Skip to content

Commit d871af3

Browse files
authored
Update snappy to 1.1.10.1 and guava to 32.0.1-jre (#2886)
* Update snappy to 1.1.10.1 and guava to 32.0.1-jre Signed-off-by: Craig Perkins <cwperx@amazon.com> * Upgrade kafka to 3.5.0 Signed-off-by: Craig Perkins <cwperx@amazon.com> * Force snappy Signed-off-by: Craig Perkins <cwperx@amazon.com> * Add runtime dependency on org.scala-lang.modules:scala-java8-compat_3:1.0.2 to fix issue with KafkaSinkTest Signed-off-by: Craig Perkins <cwperx@amazon.com> --------- Signed-off-by: Craig Perkins <cwperx@amazon.com>
1 parent b4413a7 commit d871af3

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ buildscript {
2424
opensearch_build = version_tokens[0] + '.0'
2525

2626
common_utils_version = System.getProperty("common_utils.version", '3.0.0.0-SNAPSHOT')
27-
kafka_version = '3.4.0'
27+
kafka_version = '3.5.0'
2828

2929
if (buildVersionQualifier) {
3030
opensearch_build += "-${buildVersionQualifier}"
@@ -290,6 +290,7 @@ configurations {
290290
force "io.netty:netty-transport-native-unix-common:${versions.netty}"
291291
force "org.apache.bcel:bcel:6.6.0" // This line should be removed once Spotbugs is upgraded to 4.7.4
292292
force "com.github.luben:zstd-jni:${versions.zstd}"
293+
force "org.xerial.snappy:snappy-java:1.1.10.1"
293294
}
294295
}
295296

@@ -341,7 +342,7 @@ dependencies {
341342
implementation "org.apache.httpcomponents:httpclient:${versions.httpclient}"
342343
implementation "org.apache.httpcomponents:httpcore:${versions.httpcore}"
343344
implementation "org.apache.httpcomponents:httpasyncclient:${versions.httpasyncclient}"
344-
implementation 'com.google.guava:guava:30.0-jre'
345+
implementation 'com.google.guava:guava:32.0.1-jre'
345346
implementation 'org.greenrobot:eventbus:3.2.0'
346347
implementation 'commons-cli:commons-cli:1.3.1'
347348
implementation "org.bouncycastle:bcprov-jdk15on:${versions.bouncycastle}"
@@ -406,7 +407,7 @@ dependencies {
406407
runtimeOnly 'io.dropwizard.metrics:metrics-core:3.1.2'
407408
runtimeOnly 'org.slf4j:slf4j-api:1.7.30'
408409
runtimeOnly 'org.apache.logging.log4j:log4j-slf4j-impl:2.17.1'
409-
runtimeOnly 'org.xerial.snappy:snappy-java:1.1.8.4'
410+
runtimeOnly 'org.xerial.snappy:snappy-java:1.1.10.1'
410411
runtimeOnly 'org.codehaus.woodstox:stax2-api:4.2.1'
411412
runtimeOnly 'org.glassfish.jaxb:txw2:2.3.4'
412413
runtimeOnly 'com.fasterxml.woodstox:woodstox-core:6.4.0'
@@ -415,6 +416,7 @@ dependencies {
415416
runtimeOnly "com.github.luben:zstd-jni:${versions.zstd}"
416417
runtimeOnly 'org.checkerframework:checker-qual:3.5.0'
417418
runtimeOnly "org.bouncycastle:bcpkix-jdk15on:${versions.bouncycastle}"
419+
runtimeOnly 'org.scala-lang.modules:scala-java8-compat_3:1.0.2'
418420

419421

420422
implementation 'org.apache.commons:commons-lang3:3.4'

0 commit comments

Comments
 (0)