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.

123456789101112131415161718192021
  1. SRCS = glob(['src/**'])
  2. RESOURCES = glob(['resources/**'])
  3. java_library(
  4. name = 'jgit',
  5. srcs = SRCS,
  6. resources = RESOURCES,
  7. deps = [
  8. '//lib:javaewah',
  9. '//lib:jsch',
  10. '//lib:httpcomponents',
  11. '//lib:servlet-api',
  12. '//lib:slf4j-api',
  13. ],
  14. visibility = ['PUBLIC'],
  15. )
  16. java_sources(
  17. name = 'jgit_src',
  18. srcs = SRCS + RESOURCES,
  19. )