fix(deps): update dependency org.apache.kafka:kafka-clients to v4 (#1802)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Lauri Tulmin <ltulmin@splunk.com>
This commit is contained in:
renovate[bot] 2025-05-16 14:37:58 +00:00 committed by GitHub
parent 5a3c5f6cd1
commit dba60a384f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 2 deletions

View File

@ -50,7 +50,7 @@ dependencies {
api("org.bouncycastle:bcpkix-jdk15on:1.70")
api("org.junit-pioneer:junit-pioneer:1.9.1")
api("org.skyscreamer:jsonassert:1.5.3")
api("org.apache.kafka:kafka-clients:3.9.0")
api("org.apache.kafka:kafka-clients:4.0.0")
api("org.testcontainers:kafka:1.21.0")
api("com.lmax:disruptor:3.4.4")
api("org.jctools:jctools-core:4.0.5")

View File

@ -4,7 +4,12 @@ plugins {
}
description = "SpanExporter based on Kafka"
otelJava.moduleName.set("io.opentelemetry.contrib.kafka")
otelJava {
moduleName.set("io.opentelemetry.contrib.kafka")
// kafka 4 requires java 11
minJavaVersionSupported.set(JavaVersion.VERSION_11)
}
dependencies {
api("io.opentelemetry:opentelemetry-sdk-trace")