@@ -28,8 +28,8 @@ Guava comes in two flavors:
2828Guava's Maven group ID is ` com.google.guava ` , and its artifact ID is ` guava ` .
2929Guava provides two different "flavors": one for use on a (Java 8+) JRE and one
3030for use on Android or by any library that wants to be compatible with Android.
31- These flavors are specified in the Maven version field as either ` 33.3.0 -jre ` or
32- ` 33.3.0 -android ` . For more about depending on Guava, see
31+ These flavors are specified in the Maven version field as either ` 33.3.1 -jre ` or
32+ ` 33.3.1 -android ` . For more about depending on Guava, see
3333[ using Guava in your build] .
3434
3535To add a dependency on Guava using Maven, use the following:
@@ -38,9 +38,9 @@ To add a dependency on Guava using Maven, use the following:
3838<dependency >
3939 <groupId >com.google.guava</groupId >
4040 <artifactId >guava</artifactId >
41- <version >33.3.0 -jre</version >
41+ <version >33.3.1 -jre</version >
4242 <!-- or, for Android: -->
43- <version >33.3.0 -android</version >
43+ <version >33.3.1 -android</version >
4444</dependency >
4545```
4646
@@ -51,16 +51,16 @@ dependencies {
5151 // Pick one:
5252
5353 // 1. Use Guava in your implementation only:
54- implementation("com.google.guava:guava:33.3.0 -jre")
54+ implementation("com.google.guava:guava:33.3.1 -jre")
5555
5656 // 2. Use Guava types in your public API:
57- api("com.google.guava:guava:33.3.0 -jre")
57+ api("com.google.guava:guava:33.3.1 -jre")
5858
5959 // 3. Android - Use Guava in your implementation only:
60- implementation("com.google.guava:guava:33.3.0 -android")
60+ implementation("com.google.guava:guava:33.3.1 -android")
6161
6262 // 4. Android - Use Guava types in your public API:
63- api("com.google.guava:guava:33.3.0 -android")
63+ api("com.google.guava:guava:33.3.1 -android")
6464}
6565```
6666
0 commit comments