You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BUILD 376B

1234567891011121314
  1. package(default_visibility = ["//visibility:public"])
  2. java_library(
  3. name = "junit",
  4. testonly = 1,
  5. srcs = glob(["src/**/*.java"]),
  6. resource_strip_prefix = "org.eclipse.jgit.junit/resources",
  7. resources = glob(["resources/**"]),
  8. deps = [
  9. "//lib:junit",
  10. # We want these deps to be provided_deps
  11. "//org.eclipse.jgit:jgit",
  12. ],
  13. )