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 466B

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