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

java_library(
    name = "junit",
    testonly = 1,
    srcs = glob(["src/**"]),
    resource_strip_prefix = "org.eclipse.jgit.junit/resources",
    resources = glob(["resources/**"]),
    deps = [
        "//lib:junit",
        # We want these deps to be provided_deps
        "//org.eclipse.jgit:jgit",
    ],
)

Back to the top