Skip to content

Commit 98b2696

Browse files
authored
Bump guava version to 32.1.3 (opensearch-project#3300) (opensearch-project#3302)
(cherry picked from commit ff85b12) Signed-off-by: Junqiu Lei <junqiu@amazon.com>
1 parent a2befde commit 98b2696

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ subprojects {
7272

7373
configurations.all {
7474
// Force spotless depending on newer version of guava due to CVE-2023-2976. Remove after spotless upgrades.
75-
resolutionStrategy.force "com.google.guava:guava:32.1.2-jre"
75+
resolutionStrategy.force "com.google.guava:guava:32.1.3-jre"
7676
resolutionStrategy.force 'org.apache.commons:commons-compress:1.26.0'
7777
}
7878
}

common/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727
compileOnly group: 'com.google.code.gson', name: 'gson', version: '2.10.1'
2828
compileOnly group: 'org.json', name: 'json', version: '20231013'
2929
testImplementation group: 'org.json', name: 'json', version: '20231013'
30-
implementation('com.google.guava:guava:32.1.2-jre') {
30+
implementation('com.google.guava:guava:32.1.3-jre') {
3131
exclude group: 'com.google.guava', module: 'failureaccess'
3232
exclude group: 'com.google.code.findbugs', module: 'jsr305'
3333
exclude group: 'org.checkerframework', module: 'checker-qual'

memory/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies {
2828
implementation group: 'org.opensearch', name: 'opensearch', version: "${opensearch_version}"
2929
implementation group: 'org.apache.httpcomponents.core5', name: 'httpcore5', version: '5.2.2'
3030
implementation "org.opensearch:common-utils:${common_utils_version}"
31-
implementation group: 'com.google.guava', name: 'guava', version: '32.1.2-jre'
31+
implementation group: 'com.google.guava', name: 'guava', version: '32.1.3-jre'
3232
testImplementation (group: 'junit', name: 'junit', version: '4.13.2') {
3333
exclude module : 'hamcrest'
3434
exclude module : 'hamcrest-core'

ml-algorithms/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dependencies {
4141
implementation group: 'io.protostuff', name: 'protostuff-collectionschema', version: '1.8.0'
4242
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
4343
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.7.0'
44-
implementation group: 'com.google.guava', name: 'guava', version: '32.1.2-jre'
44+
implementation group: 'com.google.guava', name: 'guava', version: '32.1.3-jre'
4545
implementation group: 'com.google.code.gson', name: 'gson', version: '2.10.1'
4646
implementation platform("ai.djl:bom:0.28.0")
4747
implementation group: 'ai.djl.pytorch', name: 'pytorch-model-zoo'

plugin/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ dependencies {
5454
implementation("com.fasterxml.jackson.core:jackson-annotations:${versions.jackson}")
5555
implementation("com.fasterxml.jackson.core:jackson-databind:${versions.jackson_databind}")
5656
implementation group: 'com.networknt' , name: 'json-schema-validator', version: '1.4.0'
57-
implementation group: 'com.google.guava', name: 'guava', version: '32.1.2-jre'
57+
implementation group: 'com.google.guava', name: 'guava', version: '32.1.3-jre'
5858
implementation group: 'com.google.code.gson', name: 'gson', version: '2.10.1'
5959
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.10'
6060
implementation group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1'

0 commit comments

Comments
 (0)