Skip to main content
aboutsummaryrefslogblamecommitdiffstats
path: root/BUCK
blob: f19b7bdc5dfb1a31a1e71d77801959dc745ff229 (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                                              
        
                    

                                                             




























                                                 





                                                             
java_library(
  name = 'jgit',
  exported_deps = ['//org.eclipse.jgit:jgit'],
  visibility = ['PUBLIC'],
)

genrule(
  name = 'jgit_src',
  cmd = 'ln -s $(location //org.eclipse.jgit:jgit_src) $OUT',
  out = 'jgit_src.zip',
  visibility = ['PUBLIC'],
)

java_library(
  name = 'jgit-servlet',
  exported_deps = [
    ':jgit',
    '//org.eclipse.jgit.http.server:jgit-servlet'
  ],
  visibility = ['PUBLIC'],
)

java_library(
  name = 'jgit-archive',
  exported_deps = [
    ':jgit',
    '//org.eclipse.jgit.archive:jgit-archive'
  ],
  visibility = ['PUBLIC'],
)

java_library(
  name = 'junit',
  exported_deps = [
    ':jgit',
    '//org.eclipse.jgit.junit:junit'
  ],
  visibility = ['PUBLIC'],
)

genrule(
  name = 'jgit_bin',
  cmd = 'ln -s $(location //org.eclipse.jgit.pgm:jgit) $OUT',
  out = 'jgit_bin',
)

Back to the top