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

1234567891011121314151617181920212223242526272829303132333435363738394041
  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:args4j",
  16. "//lib:commons-compress",
  17. "//lib:javaewah",
  18. "//lib:junit",
  19. "//lib:slf4j-api",
  20. "//lib:slf4j-simple",
  21. "//lib:xz",
  22. "//org.eclipse.jgit.archive:jgit-archive",
  23. "//org.eclipse.jgit:jgit",
  24. "//org.eclipse.jgit.junit:junit",
  25. "//org.eclipse.jgit.pgm:pgm",
  26. ],
  27. )
  28. java_library(
  29. name = "helpers",
  30. testonly = 1,
  31. srcs = glob(["src/**/*.java"]),
  32. deps = [
  33. "//lib:args4j",
  34. "//lib:junit",
  35. "//org.eclipse.jgit:jgit",
  36. "//org.eclipse.jgit.junit:junit",
  37. "//org.eclipse.jgit.pgm:pgm",
  38. ],
  39. )