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.

12345678910111213141516171819202122
  1. SRCS = glob(['src/**'])
  2. RESOURCES = glob(['resources/**'])
  3. java_library(
  4. name = 'jgit-lfs-server',
  5. srcs = SRCS,
  6. resources = RESOURCES,
  7. deps = [
  8. '//org.eclipse.jgit.http.apache:http-apache',
  9. '//org.eclipse.jgit:jgit',
  10. '//org.eclipse.jgit.lfs:jgit-lfs',
  11. '//lib:gson',
  12. '//lib:httpcore',
  13. '//lib:servlet-api'
  14. ],
  15. visibility = ['PUBLIC'],
  16. )
  17. java_sources(
  18. name = 'jgit-lfs-server_src',
  19. srcs = SRCS + RESOURCES,
  20. )