@@ -27,8 +27,8 @@ Guava comes in two flavors:
27
27
Guava's Maven group ID is ` com.google.guava ` , and its artifact ID is ` guava ` .
28
28
Guava provides two different "flavors": one for use on a (Java 8+) JRE and one
29
29
for 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.2 -jre ` or
31
- ` 32.1.2 -android ` . For more about depending on Guava, see
30
+ These flavors are specified in the Maven version field as either ` 32.1.3 -jre ` or
31
+ ` 32.1.3 -android ` . For more about depending on Guava, see
32
32
[ using Guava in your build] .
33
33
34
34
To 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:
37
37
<dependency >
38
38
<groupId >com.google.guava</groupId >
39
39
<artifactId >guava</artifactId >
40
- <version >32.1.2 -jre</version >
40
+ <version >32.1.3 -jre</version >
41
41
<!-- or, for Android: -->
42
- <version >32.1.2 -android</version >
42
+ <version >32.1.3 -android</version >
43
43
</dependency >
44
44
```
45
45
@@ -50,16 +50,16 @@ dependencies {
50
50
// Pick one:
51
51
52
52
// 1. Use Guava in your implementation only:
53
- implementation("com.google.guava:guava:32.1.2 -jre")
53
+ implementation("com.google.guava:guava:32.1.3 -jre")
54
54
55
55
// 2. Use Guava types in your public API:
56
- api("com.google.guava:guava:32.1.2 -jre")
56
+ api("com.google.guava:guava:32.1.3 -jre")
57
57
58
58
// 3. Android - Use Guava in your implementation only:
59
- implementation("com.google.guava:guava:32.1.2 -android")
59
+ implementation("com.google.guava:guava:32.1.3 -android")
60
60
61
61
// 4. Android - Use Guava types in your public API:
62
- api("com.google.guava:guava:32.1.2 -android")
62
+ api("com.google.guava:guava:32.1.3 -android")
63
63
}
64
64
```
65
65
0 commit comments