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

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