Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 8c65fc018164d153e51a3f8521180e69310ae4cc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                     

             

                          
                          




                                                                        
                                 

                                                
      
 
package(default_visibility = ["//visibility:public"])

java_library(
    name = "jgit-archive",
    srcs = glob(
        ["src/**/*.java"],
        exclude = ["src/org/eclipse/jgit/archive/FormatActivator.java"],
    ),
    resource_strip_prefix = "org.eclipse.jgit.archive/resources",
    resources = glob(["resources/**"]),
    deps = [
        "//lib:commons-compress",
        # We want these deps to be provided_deps
        "//org.eclipse.jgit:jgit",
    ],
)

Back to the top