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

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