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

12345678910111213141516171819202122232425262728293031323334353637383940
  1. load(
  2. "@com_googlesource_gerrit_bazlets//tools:junit.bzl",
  3. "junit_tests",
  4. )
  5. junit_tests(
  6. name = "pgm",
  7. srcs = glob(["tst/**/*.java"]),
  8. jvm_flags = [
  9. "-Xmx256m",
  10. "-Dfile.encoding=UTF-8",
  11. ],
  12. tags = ["pgm"],
  13. deps = [
  14. ":helpers",
  15. "//lib:commons-compress",
  16. "//lib:javaewah",
  17. "//lib:junit",
  18. "//lib:slf4j-api",
  19. "//lib:slf4j-simple",
  20. "//lib:xz",
  21. "//org.eclipse.jgit.archive:jgit-archive",
  22. "//org.eclipse.jgit:jgit",
  23. "//org.eclipse.jgit.junit:junit",
  24. "//org.eclipse.jgit.pgm:pgm",
  25. ],
  26. )
  27. java_library(
  28. name = "helpers",
  29. testonly = 1,
  30. srcs = glob(["src/**/*.java"]),
  31. deps = [
  32. "//lib:args4j",
  33. "//lib:junit",
  34. "//org.eclipse.jgit:jgit",
  35. "//org.eclipse.jgit.junit:junit",
  36. "//org.eclipse.jgit.pgm:pgm",
  37. ],
  38. )