Skip to main content
summaryrefslogtreecommitdiffstats
path: root/BUCK
blob: 4578e17586723f431787501732f20b267185f675 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
DEPS = [
  '//org.eclipse.jgit:jgit',
  '//org.eclipse.jgit.archive:jgit-archive',
  '//org.eclipse.jgit.http.server:jgit-servlet',
  '//org.eclipse.jgit.lfs:jgit-lfs',
  '//org.eclipse.jgit.lfs.server:jgit-lfs-server',
  '//org.eclipse.jgit.pgm:jgit',
]

zip_file(
  name = 'all',
  srcs = DEPS,
)

sh_binary(
  name = 'jgit_bin',
  main = '//org.eclipse.jgit.pgm:jgit',
)

Back to the top