Update guava to 27.0.1-jre

Since 27.0-jre guava has a runtime dependency on failureaccess. See the
release notes for 27.0 [1] and 27.0.1 [2] for further details.

[1] https://github.com/google/guava/releases/tag/v27.0
[2] https://github.com/google/guava/releases/tag/v27.0.1

Change-Id: Ie38027b9321926f8b054daba6a940cf476c33224
This commit is contained in:
David Pursehouse 2018-11-23 13:55:37 +09:00
parent 4e3904cb8a
commit bb3710002e
3 changed files with 16 additions and 2 deletions

View File

@ -210,6 +210,12 @@ maven_jar(
sha1 = GUAVA_BIN_SHA1,
)
maven_jar(
name = "guava-failureaccess",
artifact = "com.google.guava:failureaccess:1.0.1",
sha1 = "1dcf1de382a0bf95a3d8b0849546c88bac1292c9",
)
maven_jar(
name = "j2objc",
artifact = "com.google.j2objc:j2objc-annotations:1.1",

View File

@ -79,6 +79,13 @@ java_library(
],
)
java_library(
name = "guava-failureaccess",
data = ["//lib:LICENSE-Apache2.0"],
visibility = ["//visibility:public"],
exports = ["@guava-failureaccess//jar"],
)
java_library(
name = "j2objc",
data = ["//lib:LICENSE-Apache2.0"],
@ -91,6 +98,7 @@ java_library(
data = ["//lib:LICENSE-Apache2.0"],
visibility = ["//visibility:public"],
exports = [
":guava-failureaccess",
":j2objc",
"@guava//jar",
],

View File

@ -1,5 +1,5 @@
GUAVA_VERSION = "26.0-jre"
GUAVA_VERSION = "27.0.1-jre"
GUAVA_BIN_SHA1 = "6a806eff209f36f635f943e16d97491f00f6bfab"
GUAVA_BIN_SHA1 = "bd41a290787b5301e63929676d792c507bbc00ae"
GUAVA_DOC_URL = "https://google.github.io/guava/releases/" + GUAVA_VERSION + "/api/docs/"