Skip to content

Commit e48ad8e

Browse files
committed
fix: update java deps and add missing libs
1 parent ec72fb7 commit e48ad8e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/java_helper.rs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -306,15 +306,17 @@ static JVM_SETUP: Lazy<()> = Lazy::new(|| {
306306
// Kafka client
307307
// Note that j4rs does NOT pull dependencies, so we need to add compression libs (except for gzip, which is
308308
// built into Java) manually.
309-
"org.apache.kafka:kafka-clients:3.1.0",
309+
"org.apache.kafka:kafka-clients:3.5.0",
310310
// Helper used in `from_java_bytes`
311311
"org.apache.commons:commons-lang3:3.12.0",
312312
// LZ4 compression support
313313
"org.lz4:lz4-java:1.8.0",
314314
// snappy compression support
315-
"org.xerial.snappy:snappy-java:1.1.8.4",
315+
"org.xerial.snappy:snappy-java:1.1.10.2",
316316
// zstd compression support
317-
"com.github.luben:zstd-jni:1.5.0-4",
317+
"com.github.luben:zstd-jni:1.5.5-5",
318+
// logging from withing java
319+
"org.slf4j:slf4j-api:2.0.7",
318320
] {
319321
let artifact = MavenArtifact::from(artifact_name);
320322
jvm_installation

0 commit comments

Comments
 (0)