Skip to content

Commit

Permalink
Upgrade to Kafka 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Jan 7, 2025
1 parent 814143d commit 3c9e036
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
8 changes: 4 additions & 4 deletions fluent-kafka-streams-tests/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("com.github.davidmc24.gradle.plugin.avro") version "1.9.1"
id("com.google.protobuf") version "0.9.1"
id("com.google.protobuf") version "0.9.4"
java
idea // required for protobuf support in intellij
}
Expand All @@ -18,16 +18,16 @@ dependencies {
val junit5Version: String by project
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter-api", version = junit5Version)
testRuntimeOnly(group = "org.junit.jupiter", name = "junit-jupiter-engine", version = junit5Version)
testImplementation(group = "org.apache.avro", name = "avro", version = "1.11.3")
testImplementation(group = "org.apache.avro", name = "avro", version = "1.12.0")
val confluentVersion: String by project
testImplementation(group = "io.confluent", name = "kafka-protobuf-provider", version = confluentVersion)
testImplementation(group = "io.confluent", name = "kafka-streams-protobuf-serde", version = confluentVersion)
testImplementation(group = "com.google.protobuf", name = "protobuf-java", version = "3.21.12")
testImplementation(group = "com.google.protobuf", name = "protobuf-java", version = "3.25.5")
}

protobuf {
protoc {
// The artifact spec for the Protobuf Compiler
artifact = "com.google.protobuf:protoc:3.21.12"
artifact = "com.google.protobuf:protoc:3.25.5"
}
}
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
version=2.15.1-SNAPSHOT
org.gradle.caching=true
org.gradle.parallel=true
junit5Version=5.10.2
junit5Version=5.11.4
junit4Version=4.13.2
confluentVersion=7.7.0
kafkaVersion=3.7.1
log4jVersion=2.23.1
confluentVersion=7.8.0
kafkaVersion=3.8.1
log4jVersion=2.24.3
org.gradle.jvmargs=-Xmx2048m
4 changes: 1 addition & 3 deletions schema-registry-mock/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ dependencies {
"api"(group = "io.confluent", name = "kafka-schema-registry-client", version = confluentVersion)
"api"(group = "io.confluent", name = "kafka-streams-avro-serde", version = confluentVersion)

implementation(group = "org.wiremock", name = "wiremock", version = "3.4.2")
// required because other dependencies use different Jackson versions if this library is used in test scope
api(group = "com.fasterxml.jackson.core", name = "jackson-databind", version = "2.15.3")
implementation(group = "org.wiremock", name = "wiremock", version = "3.10.0")

val junit5Version: String by project
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter-api", version = junit5Version)
Expand Down

0 comments on commit 3c9e036

Please sign in to comment.