Rename ewah dependency to javaewah

This is a preparation change to support building JGit from development
tree.

Change-Id: I581a1632aad93eaf820fc2c608ea37d29286f392
This commit is contained in:
David Ostrovsky
2016-11-06 13:21:44 +01:00
parent 01090f2f0d
commit 0fc4f7a900
3 changed files with 6 additions and 6 deletions

View File

@@ -156,7 +156,7 @@ http_file(
)
maven_jar(
name = 'ewah',
name = 'javaewah',
artifact = 'com.googlecode.javaewah:JavaEWAH:0.7.9',
sha1 = 'eceaf316a8faf0e794296ebe158ae110c7d72a5a',
)

View File

@@ -9,7 +9,7 @@ maven_jar(
license = 'jgit',
repository = REPO,
unsign = True,
deps = [':ewah'],
deps = [':javaewah'],
exclude = [
'META-INF/eclipse.inf',
'about.html',
@@ -18,7 +18,7 @@ maven_jar(
)
maven_jar(
name = 'ewah',
name = 'javaewah',
id = 'com.googlecode.javaewah:JavaEWAH:0.7.9',
sha1 = 'eceaf316a8faf0e794296ebe158ae110c7d72a5a',
license = 'Apache2.0',

View File

@@ -3,14 +3,14 @@ load('//tools/bzl:unsign.bzl', 'unsign_jars')
java_library(
name = 'jgit-signed',
exports = ['@jgit//jar'],
runtime_deps = [':ewah'],
runtime_deps = [':javaewah'],
visibility = ['//visibility:public'],
data = ['//lib:LICENSE-jgit'],
)
java_library(
name = 'ewah',
exports = ['@ewah//jar'],
name = 'javaewah',
exports = ['@javaewah//jar'],
visibility = ['//visibility:public'],
data = ['//lib:LICENSE-Apache2.0'],
)