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.

1234567891011121314151617181920
  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:slf4j-api',
  12. ],
  13. visibility = ['PUBLIC'],
  14. )
  15. java_sources(
  16. name = 'jgit_src',
  17. srcs = SRCS + RESOURCES,
  18. )