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.

1234567891011121314151617
  1. SRCS = glob(['src/**'])
  2. RESOURCES = glob(['resources/**'])
  3. java_library(
  4. name = 'jgit-lfs',
  5. srcs = SRCS,
  6. resources = RESOURCES,
  7. deps = [
  8. '//org.eclipse.jgit:jgit'
  9. ],
  10. visibility = ['PUBLIC'],
  11. )
  12. java_sources(
  13. name = 'jgit-lfs_src',
  14. srcs = SRCS + RESOURCES,
  15. )