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

1234567891011121314151617181920212223242526272829303132
  1. load(
  2. "@com_googlesource_gerrit_bazlets//tools:junit.bzl",
  3. "junit_tests",
  4. )
  5. load("@rules_java//java:defs.bzl", "java_library")
  6. package(default_visibility = ["//visibility:public"])
  7. junit_tests(
  8. name = "lfs",
  9. srcs = glob(["tst/**/*.java"]),
  10. tags = ["lfs"],
  11. deps = [
  12. ":helpers",
  13. "//lib:junit",
  14. "//org.eclipse.jgit:jgit",
  15. "//org.eclipse.jgit.junit:junit",
  16. "//org.eclipse.jgit.lfs:jgit-lfs",
  17. ],
  18. )
  19. java_library(
  20. name = "helpers",
  21. testonly = 1,
  22. srcs = glob(["src/**/*.java"]),
  23. deps = [
  24. "//lib:junit",
  25. "//org.eclipse.jgit:jgit",
  26. "//org.eclipse.jgit.junit:junit",
  27. "//org.eclipse.jgit.lfs:jgit-lfs",
  28. ],
  29. )