@@ -27,8 +27,8 @@ Guava comes in two flavors:
2727Guava's Maven group ID is ` com.google.guava ` , and its artifact ID is ` guava ` .
2828Guava provides two different "flavors": one for use on a (Java 8+) JRE and one
2929for use on Android or by any library that wants to be compatible with Android.
30- These flavors are specified in the Maven version field as either ` 32.1.1 -jre ` or
31- ` 32.1.1 -android ` . For more about depending on Guava, see
30+ These flavors are specified in the Maven version field as either ` 32.1.2 -jre ` or
31+ ` 32.1.2 -android ` . For more about depending on Guava, see
3232[ using Guava in your build] .
3333
3434To add a dependency on Guava using Maven, use the following:
@@ -37,9 +37,9 @@ To add a dependency on Guava using Maven, use the following:
3737<dependency >
3838 <groupId >com.google.guava</groupId >
3939 <artifactId >guava</artifactId >
40- <version >32.1.1 -jre</version >
40+ <version >32.1.2 -jre</version >
4141 <!-- or, for Android: -->
42- <version >32.1.1 -android</version >
42+ <version >32.1.2 -android</version >
4343</dependency >
4444```
4545
@@ -50,16 +50,16 @@ dependencies {
5050 // Pick one:
5151
5252 // 1. Use Guava in your implementation only:
53- implementation("com.google.guava:guava:32.1.1 -jre")
53+ implementation("com.google.guava:guava:32.1.2 -jre")
5454
5555 // 2. Use Guava types in your public API:
56- api("com.google.guava:guava:32.1.1 -jre")
56+ api("com.google.guava:guava:32.1.2 -jre")
5757
5858 // 3. Android - Use Guava in your implementation only:
59- implementation("com.google.guava:guava:32.1.1 -android")
59+ implementation("com.google.guava:guava:32.1.2 -android")
6060
6161 // 4. Android - Use Guava types in your public API:
62- api("com.google.guava:guava:32.1.1 -android")
62+ api("com.google.guava:guava:32.1.2 -android")
6363}
6464```
6565
0 commit comments