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