Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump avro to 1.11.3 #315

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 15 additions & 11 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,14 @@ publishing {
val kafkaVersion = "2.2.0"
val slf4jVersion = "2.0.13"

val avroVersion = "1.8.1"
// Version 1.8.1 brings Jackson 1.9.x/org.codehaus.jackson package for Avro and Confluent Platform 4.1.4.
val confluentPlatformVersion = "4.1.4" // For compatibility tests use version 4.1.4.
val avroVersion = "1.11.3"
// For compatibility tests use version 5.5.15
// 5.5.x is recent enough to have Avro 1.9.2 and compatible with Avro 1.11.3
// and to support Jackson 2.10.0+
val confluentPlatformVersion = "5.5.15"
val hamcrestVersion = "2.2"
val jacksonVersion = "2.17.0" // This Jackson is used in the tests.
val jacksonVersion = "2.17.0"
val jupiterVersion = "5.10.2"
val jettyVersion = "12.0.8"
val servletVersion = "4.0.1"
val testcontainersVersion = "1.19.7"
val awaitilityVersion = "4.2.1"
Expand Down Expand Up @@ -187,19 +188,22 @@ dependencies {

testRuntimeOnly("org.slf4j:slf4j-log4j12:$slf4jVersion")

integrationTestRuntimeOnly("io.confluent:kafka-avro-serializer:$confluentPlatformVersion")
integrationTestRuntimeOnly("io.confluent:kafka-connect-avro-converter:$confluentPlatformVersion")
integrationTestRuntimeOnly("io.confluent:kafka-json-serializer:$confluentPlatformVersion")
integrationTestRuntimeOnly("io.confluent:kafka-avro-serializer:$confluentPlatformVersion") {
exclude(group = "org.apache.kafka", module = "kafka-clients")
}
integrationTestRuntimeOnly("io.confluent:kafka-connect-avro-converter:$confluentPlatformVersion") {
exclude(group = "org.apache.kafka", module = "kafka-clients")
}
integrationTestRuntimeOnly("io.confluent:kafka-json-serializer:$confluentPlatformVersion") {
exclude(group = "org.apache.kafka", module = "kafka-clients")
}
integrationTestRuntimeOnly("org.slf4j:slf4j-log4j12:$slf4jVersion")

integrationTestImplementation("org.apache.kafka:connect-runtime:$kafkaVersion")
integrationTestImplementation("com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion")
integrationTestImplementation("javax.servlet:javax.servlet-api:$servletVersion")
integrationTestImplementation("org.apache.avro:avro:$avroVersion")
integrationTestImplementation("org.apache.kafka:connect-runtime:$kafkaVersion")
integrationTestImplementation("org.eclipse.jetty:jetty-http:$jettyVersion")
integrationTestImplementation("org.eclipse.jetty:jetty-server:$jettyVersion")
integrationTestImplementation("org.eclipse.jetty:jetty-util:$jettyVersion")
integrationTestImplementation("org.junit.jupiter:junit-jupiter:$jupiterVersion")
integrationTestImplementation("org.testcontainers:junit-jupiter:$testcontainersVersion")
integrationTestImplementation("org.testcontainers:kafka:$testcontainersVersion") // this is not Kafka version
Expand Down
Loading