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.

BUCK 785B

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