Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5ea118c732dd0ee00987fd338e083016a48411f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package(default_visibility = ["//visibility:public"])

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

Back to the top