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

12345678910111213141516171819202122232425262728293031
  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. "//lib:slf4j-api",
  15. "//org.eclipse.jgit:jgit",
  16. "//org.eclipse.jgit.junit:junit",
  17. "//org.eclipse.jgit.lfs:jgit-lfs",
  18. ],
  19. )
  20. java_library(
  21. name = "helpers",
  22. testonly = 1,
  23. srcs = glob(["src/**/*.java"]),
  24. deps = [
  25. "//lib:junit",
  26. "//org.eclipse.jgit.lfs:jgit-lfs",
  27. ],
  28. )