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

123456789101112131415161718192021222324
  1. load("@rules_java//java:defs.bzl", "java_library")
  2. package(default_visibility = ["//visibility:public"])
  3. java_library(
  4. name = "junit-http",
  5. testonly = 1,
  6. srcs = glob(["src/**/*.java"]),
  7. resources = glob(["resources/**"]),
  8. # TODO(davido): we want here provided deps
  9. deps = [
  10. "//lib:jetty-http",
  11. "//lib:jetty-security",
  12. "//lib:jetty-server",
  13. "//lib:jetty-servlet",
  14. "//lib:jetty-util",
  15. "//lib:junit",
  16. "//lib:servlet-api",
  17. "//lib:slf4j-api",
  18. "//org.eclipse.jgit.http.server:jgit-servlet",
  19. "//org.eclipse.jgit:jgit",
  20. "//org.eclipse.jgit.junit:junit",
  21. ],
  22. )