Bump guice version to 5.0.1

This is fixed last illegal access warning observed with Java 11: [1].

[1] https://github.com/google/guice/issues/1321

Bug: Issue 12639
Change-Id: I9ee6edf0387c4db66e7bc545be327ca224c6db01
This commit is contained in:
David Ostrovsky
2021-03-04 09:37:10 +01:00
parent ca87b681a0
commit c60b11598f

View File

@@ -141,24 +141,24 @@ def declare_nongoogle_deps():
sha1 = GUAVA_BIN_SHA1,
)
GUICE_VERS = "5.0.0-BETA-1"
GUICE_VERS = "5.0.1"
maven_jar(
name = "guice-library",
artifact = "com.google.inject:guice:" + GUICE_VERS,
sha1 = "c5572be8a8b75ea50e0fdf54fa1f75a3141ab936",
sha1 = "0dae7556b441cada2b4f0a2314eb68e1ff423429",
)
maven_jar(
name = "guice-assistedinject",
artifact = "com.google.inject.extensions:guice-assistedinject:" + GUICE_VERS,
sha1 = "4d06eba0e08151b52d9e25a14e4f01eedf998bc3",
sha1 = "62e02f2aceb7d90ba354584dacc018c1e94ff01c",
)
maven_jar(
name = "guice-servlet",
artifact = "com.google.inject.extensions:guice-servlet:" + GUICE_VERS,
sha1 = "373b9a4f1b6683d9a991410660d2c9adb9f06737",
sha1 = "f527009d51f172a2e6937bfb55fcb827e2e2386b",
)
# Keep this version of Soy synchronized with the version used in Gitiles.