選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. )