mirror of https://github.com/grpc/grpc-java.git
repositories.bzl: correct re2j sha.
the fundamental issue is that the sha-1 sums for the github and maven jars for re2j are different. (see https://github.com/google/re2j/issues/83 for discussion.) the sha used at grpc-java head corresponds to the github jar, but the target itself refers to the maven jar. the reason no one has noticed is that @com_google_re2j//jar is not actually used as a dependency in any bazel target in this repo. this will change once the services/ directory becomes a bazel package. (the source files in services/ do depend on re2j.)
This commit is contained in:
parent
f1f3dbcbd6
commit
d736dc31c4
|
|
@ -200,7 +200,7 @@ def com_google_re2j():
|
||||||
native.maven_jar(
|
native.maven_jar(
|
||||||
name = "com_google_re2j",
|
name = "com_google_re2j",
|
||||||
artifact = "com.google.re2j:re2j:1.2",
|
artifact = "com.google.re2j:re2j:1.2",
|
||||||
sha1 = "499d5e041f962fefd0f245a9325e8125608ebb54",
|
sha1 = "4361eed4abe6f84d982cbb26749825f285996dd2",
|
||||||
)
|
)
|
||||||
|
|
||||||
def com_google_truth_truth():
|
def com_google_truth_truth():
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue