Files
gerrit/lib/jgit/org.eclipse.jgit/BUCK
David Ostrovsky 0fc4f7a900 Rename ewah dependency to javaewah
This is a preparation change to support building JGit from development
tree.

Change-Id: I581a1632aad93eaf820fc2c608ea37d29286f392
2016-11-06 18:29:06 +01:00

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 = '3e3d0b73dcf4ad649f37758ea8502d92f3d299de',
src_sha1 = 'fc352952db91a4046e4b832145eb2dc8afce8db1',
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:0.7.9',
sha1 = 'eceaf316a8faf0e794296ebe158ae110c7d72a5a',
license = 'Apache2.0',
)