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

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