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.

BUCK 449B

123456789101112131415161718
  1. java_library(
  2. name = 'junit-http',
  3. srcs = glob(['src/**']),
  4. resources = glob(['resources/**']),
  5. provided_deps = [
  6. '//org.eclipse.jgit:jgit',
  7. '//org.eclipse.jgit.http.server:jgit-servlet',
  8. '//org.eclipse.jgit.junit:junit',
  9. '//lib:junit',
  10. '//lib:servlet-api',
  11. '//lib/jetty:http',
  12. '//lib/jetty:server',
  13. '//lib/jetty:servlet',
  14. '//lib/jetty:security',
  15. '//lib/jetty:util',
  16. ],
  17. visibility = ['PUBLIC'],
  18. )