Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: f3b9005f940c70f890a83c0dd94c5bf91bf8af53 (plain) (tree)
1
2
3
4
5
6
7
8



                                                     
                                   


                                                                    



                            


                                                     

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

java_library(
    name = "jgit-lfs-server",
    srcs = glob(["src/**/*.java"]),
    resource_strip_prefix = "org.eclipse.jgit.lfs.server/resources",
    resources = glob(["resources/**"]),
    deps = [
        "//lib:gson",
        "//lib:httpcore",
        "//lib:servlet-api",
        "//lib:slf4j-api",
        "//org.eclipse.jgit.http.apache:http-apache",
        "//org.eclipse.jgit:jgit",
        "//org.eclipse.jgit.lfs:jgit-lfs",
    ],
)

Back to the top