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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. java_library(
  2. name = 'jgit',
  3. exported_deps = ['//org.eclipse.jgit:jgit'],
  4. visibility = ['PUBLIC'],
  5. )
  6. genrule(
  7. name = 'jgit_src',
  8. cmd = 'ln -s $(location //org.eclipse.jgit:jgit_src) $OUT',
  9. out = 'jgit_src.zip',
  10. visibility = ['PUBLIC'],
  11. )
  12. java_library(
  13. name = 'jgit-servlet',
  14. exported_deps = [
  15. ':jgit',
  16. '//org.eclipse.jgit.http.server:jgit-servlet'
  17. ],
  18. visibility = ['PUBLIC'],
  19. )
  20. java_library(
  21. name = 'jgit-archive',
  22. exported_deps = [
  23. ':jgit',
  24. '//org.eclipse.jgit.archive:jgit-archive'
  25. ],
  26. visibility = ['PUBLIC'],
  27. )
  28. java_library(
  29. name = 'junit',
  30. exported_deps = [
  31. ':jgit',
  32. '//org.eclipse.jgit.junit:junit'
  33. ],
  34. visibility = ['PUBLIC'],
  35. )
  36. genrule(
  37. name = 'jgit_bin',
  38. cmd = 'ln -s $(location //org.eclipse.jgit.pgm:jgit) $OUT',
  39. out = 'jgit_bin',
  40. )