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.

1234567891011121314151617181920212223
  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. '//lib:slf4j-api'
  15. ],
  16. visibility = ['PUBLIC'],
  17. )
  18. java_sources(
  19. name = 'jgit-lfs-server_src',
  20. srcs = SRCS + RESOURCES,
  21. )