
JavaEWAH was upgraded in JGit in [1], which is included in the snapshot build of JGit being used in Gerrit since change Ic7c646b32. Upgrade to use the same version. [1] https://git.eclipse.org/r/#/c/77604/ Change-Id: I5de4cdbdf816296d97640bb83130544ec85685af
26 lines
604 B
Python
26 lines
604 B
Python
include_defs('//lib/maven.defs')
|
|
include_defs('//lib/JGIT_VERSION')
|
|
|
|
maven_jar(
|
|
name = 'jgit',
|
|
id = 'org.eclipse.jgit:org.eclipse.jgit:' + JGIT_VERS,
|
|
bin_sha1 = '34315f71bb9becf6ff75947a9c43c415b929ec21',
|
|
src_sha1 = '8320c18472870904eb7fb860af353fea818d07e4',
|
|
license = 'jgit',
|
|
repository = REPO,
|
|
unsign = True,
|
|
deps = [':javaewah'],
|
|
exclude = [
|
|
'META-INF/eclipse.inf',
|
|
'about.html',
|
|
'plugin.properties',
|
|
],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'javaewah',
|
|
id = 'com.googlecode.javaewah:JavaEWAH:1.1.6',
|
|
sha1 = '94ad16d728b374d65bd897625f3fbb3da223a2b6',
|
|
license = 'Apache2.0',
|
|
)
|