Release notes: https://projects.eclipse.org/projects/technology.jgit/releases/3.6.0 Change-Id: I5a8f79762453fc6c4f440f29356155f1f57fa06d Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
79 lines
1.7 KiB
Python
79 lines
1.7 KiB
Python
include_defs('//lib/maven.defs')
|
|
|
|
VERS = '3.6.0.201412230720-r'
|
|
|
|
maven_jar(
|
|
name = 'jgit',
|
|
id = 'org.eclipse.jgit:org.eclipse.jgit:' + VERS,
|
|
bin_sha1 = 'b005b69d9f5b4dba636a95403d5cb62bad5c486d',
|
|
src_sha1 = '9f8ced1e1f5c9ba6a3084e35004a19a24776478a',
|
|
license = 'jgit',
|
|
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 = '92cdf015b62c8a4f8fc1f6fd8b1835931bd4b4d6',
|
|
license = 'jgit',
|
|
deps = [':jgit'],
|
|
unsign = True,
|
|
exclude = [
|
|
'about.html',
|
|
'plugin.properties',
|
|
],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'jgit-archive',
|
|
id = 'org.eclipse.jgit:org.eclipse.jgit.archive:' + VERS,
|
|
sha1 = '359c1f666e4bdc2db795b6c60a7635f6be929a66',
|
|
license = 'jgit',
|
|
deps = [':jgit',
|
|
'//lib/commons:compress',
|
|
'//lib:tukaani-xz',
|
|
],
|
|
unsign = True,
|
|
exclude = [
|
|
'about.html',
|
|
'plugin.properties',
|
|
],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'junit',
|
|
id = 'org.eclipse.jgit:org.eclipse.jgit.junit:' + VERS,
|
|
sha1 = 'cb029dba3fafb329078904028db171d9c460ada8',
|
|
license = 'DO_NOT_DISTRIBUTE',
|
|
unsign = True,
|
|
deps = [':jgit'],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'ewah',
|
|
id = 'com.googlecode.javaewah:JavaEWAH:0.7.9',
|
|
sha1 = 'eceaf316a8faf0e794296ebe158ae110c7d72a5a',
|
|
license = 'Apache2.0',
|
|
)
|
|
|
|
prebuilt_jar(
|
|
name = 'Edit',
|
|
binary_jar = ':jgit_edit_src',
|
|
visibility = ['PUBLIC'],
|
|
)
|
|
|
|
genrule(
|
|
name = 'jgit_edit_src',
|
|
cmd = 'unzip -qd $TMP $(location :jgit_src) ' +
|
|
'org/eclipse/jgit/diff/Edit.java;' +
|
|
'cd $TMP;' +
|
|
'zip -Dq $OUT org/eclipse/jgit/diff/Edit.java',
|
|
out = 'edit-src.jar',
|
|
)
|