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.

BUILD 421B

123456789101112131415
  1. package(default_visibility = ['//visibility:public'])
  2. java_library(
  3. name = 'jgit-archive',
  4. srcs = glob(
  5. ['src/**'],
  6. exclude = ['src/org/eclipse/jgit/archive/FormatActivator.java'],
  7. ),
  8. resources = glob(['resources/**']),
  9. resource_strip_prefix = 'org.eclipse.jgit.archive/resources',
  10. deps = [ # We want these deps to be provided_deps
  11. '//org.eclipse.jgit:jgit',
  12. '@commons_compress//jar',
  13. ],
  14. )