blob: 6c7b58a73977b29763470ac1933e78199e0716b4 [file] [log] [blame]
REPO = GERRIT # Leave here even if set to MAVEN_CENTRAL.
VERS = '4.6.0.201612231935-r.30-gd3148f300'
maven_jar(
name = 'jgit',
id = 'org.eclipse.jgit:org.eclipse.jgit:' + VERS,
sha1 = 'a2b5970b853f8fee64589fc1103c0ceb7677ba63',
repository = REPO,
unsign = True,
deps = [':ewah'],
exclude = [
'META-INF/eclipse.inf',
'about.html',
'plugin.properties',
],
)
maven_jar(
name = 'jgit-servlet',
id = 'org.eclipse.jgit:org.eclipse.jgit.http.server:' + VERS,
sha1 = 'd3aa54bd610db9a5c246aa8fef13989982c98628',
repository = REPO,
deps = [':jgit'],
unsign = True,
exclude = [
'about.html',
'plugin.properties',
],
)
java_library(
name = 'jgit-archive',
exported_deps = [
':jgit-archive_library',
':commons-compress',
':tukaani-xz',
],
visibility = ['PUBLIC'],
)
maven_jar(
name = 'jgit-archive_library',
id = 'org.eclipse.jgit:org.eclipse.jgit.archive:' + VERS,
sha1 = 'a728cf277396f1227c5a8dffcf5dee0188fc0821',
repository = REPO,
deps = [':jgit'],
unsign = True,
exclude = [
'about.html',
'plugin.properties',
],
)
maven_jar(
name = 'junit',
id = 'org.eclipse.jgit:org.eclipse.jgit.junit:' + VERS,
sha1 = '6c2b2f192c95d25a2e1576aee5d1169dd8bd2266',
repository = REPO,
unsign = True,
deps = [':jgit'],
)
maven_jar(
name = 'ewah',
id = 'com.googlecode.javaewah:JavaEWAH:1.1.6',
sha1 = '94ad16d728b374d65bd897625f3fbb3da223a2b6',
)
maven_jar(
name = 'commons-compress',
id = 'org.apache.commons:commons-compress:1.7',
sha1 = 'ab365c96ee9bc88adcc6fa40d185c8e15a31410d',
exclude = ['META-INF/LICENSE.txt', 'META-INF/NOTICE.txt'],
visibility = ['//lib/jgit:jgit-archive'],
)
maven_jar(
name = 'tukaani-xz',
id = 'org.tukaani:xz:1.4',
sha1 = '18a9a2ce6abf32ea1b5fd31dae5210ad93f4e5e3',
attach_source = False,
visibility = ['//lib/jgit:jgit-archive'],
)