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

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