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

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