Skip to content

Commit 2e327ea

Browse files
tomballcopybara-github
authored andcommitted
PiperOrigin-RevId: 540417631
1 parent b83c7fc commit 2e327ea

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

guava/android/android_sources.mk

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ GUAVA_SOURCES = \
1414
com/google/common/annotations/Beta.java \
1515
com/google/common/annotations/GwtCompatible.java \
1616
com/google/common/annotations/GwtIncompatible.java \
17+
com/google/common/annotations/J2ktIncompatible.java \
1718
com/google/common/annotations/VisibleForTesting.java \
1819
com/google/common/annotations/package-info.java \
1920
com/google/common/base/Absent.java \
@@ -513,6 +514,7 @@ GUAVA_SOURCES = \
513514
com/google/common/reflect/AbstractInvocationHandler.java \
514515
com/google/common/reflect/ClassPath.java \
515516
com/google/common/reflect/ElementTypesAreNonnullByDefault.java \
517+
com/google/common/reflect/IgnoreJRERequirement.java \
516518
com/google/common/reflect/ImmutableTypeToInstanceMap.java \
517519
com/google/common/reflect/Invokable.java \
518520
com/google/common/reflect/MutableTypeToInstanceMap.java \

guava/jre_sources.mk

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ GUAVA_SOURCES = \
1414
com/google/common/annotations/Beta.java \
1515
com/google/common/annotations/GwtCompatible.java \
1616
com/google/common/annotations/GwtIncompatible.java \
17+
com/google/common/annotations/J2ktIncompatible.java \
1718
com/google/common/annotations/VisibleForTesting.java \
1819
com/google/common/annotations/package-info.java \
1920
com/google/common/base/Absent.java \
@@ -528,6 +529,7 @@ GUAVA_SOURCES = \
528529
com/google/common/reflect/AbstractInvocationHandler.java \
529530
com/google/common/reflect/ClassPath.java \
530531
com/google/common/reflect/ElementTypesAreNonnullByDefault.java \
532+
com/google/common/reflect/IgnoreJRERequirement.java \
531533
com/google/common/reflect/ImmutableTypeToInstanceMap.java \
532534
com/google/common/reflect/Invokable.java \
533535
com/google/common/reflect/MutableTypeToInstanceMap.java \

java_deps/jars.mk

+4-4
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ ANIMAL_SNIFFER_ANNOTATIONS_SOURCE_JAR = animal-sniffer-annotations-1.14-sources.
4747
FAILUREACCESS_JAR = failureaccess-1.0.1.jar
4848
FAILUREACCESS_SOURCE_JAR = failureaccess-1.0.1-sources.jar
4949

50-
GUAVA_JAR = guava-31.1-jre.jar
51-
GUAVA_SOURCE_JAR = guava-31.1-jre-sources.jar
50+
GUAVA_JAR = guava-32.0.1-jre.jar
51+
GUAVA_SOURCE_JAR = guava-32.0.1-jre-sources.jar
5252

53-
GUAVA_ANDROID_JAR = guava-31.1-android.jar
54-
GUAVA_ANDROID_SOURCE_JAR = guava-31.1-android-sources.jar
53+
GUAVA_ANDROID_JAR = guava-32.0.1-android.jar
54+
GUAVA_ANDROID_SOURCE_JAR = guava-32.0.1-android-sources.jar
5555

5656
SCENELIB_JAR = scenelib.jar
5757
PLUME_UTIL_JAR = plume-util-1.0.6.jar

java_deps/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<artifactItem>
7878
<groupId>com.google.guava</groupId>
7979
<artifactId>guava</artifactId>
80-
<version>31.1-jre</version>
80+
<version>32.0.1-jre</version>
8181
<classifier>sources</classifier>
8282
</artifactItem>
8383
<artifactItem>
@@ -89,7 +89,7 @@
8989
<artifactItem>
9090
<groupId>com.google.guava</groupId>
9191
<artifactId>guava</artifactId>
92-
<version>31.1-android</version>
92+
<version>32.0.1-android</version>
9393
<classifier>sources</classifier>
9494
</artifactItem>
9595
<artifactItem>
@@ -98,7 +98,7 @@
9898
and this one conflicts with 31.0.1-jre. -->
9999
<groupId>com.google.guava</groupId>
100100
<artifactId>guava</artifactId>
101-
<version>31.1-android</version>
101+
<version>32.0.1-android</version>
102102
</artifactItem>
103103
<artifactItem>
104104
<groupId>javax.inject</groupId>
@@ -171,7 +171,7 @@
171171
<dependency>
172172
<groupId>com.google.guava</groupId>
173173
<artifactId>guava</artifactId>
174-
<version>31.1-jre</version>
174+
<version>32.0.1-jre</version>
175175
<scope>compile</scope>
176176
</dependency>
177177
<dependency>

0 commit comments

Comments
 (0)