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

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