Skip to content

Commit

Permalink
Upgrade to Kafka 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Mar 1, 2024
1 parent a0e0078 commit a7a7f68
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ allprojects {

repositories {
mavenCentral()
maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots")
maven(url = "https://packages.confluent.io/maven/")
}
}
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version=2.16.2-SNAPSHOT
org.gradle.caching=true
org.gradle.parallel=true
kafkaVersion=3.5.2
confluentVersion=7.5.1
fluentKafkaVersion=2.11.3
kafkaVersion=3.6.1
confluentVersion=7.6.0
fluentKafkaVersion=2.11.6-SNAPSHOT
org.gradle.jvmargs=-Xmx2048m
10 changes: 5 additions & 5 deletions streams-bootstrap/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
val confluentVersion: String by project
implementation(group = "io.confluent", name = "kafka-streams-avro-serde", version = confluentVersion)
api(group = "io.confluent", name = "kafka-schema-registry-client", version = confluentVersion)
val log4jVersion = "2.22.1"
val log4jVersion = "2.23.0"
implementation(group = "org.apache.logging.log4j", name = "log4j-core", version = log4jVersion)
implementation(group = "org.apache.logging.log4j", name = "log4j-slf4j2-impl", version = log4jVersion)
api(
Expand All @@ -25,13 +25,13 @@ dependencies {
implementation(group = "com.google.guava", name = "guava", version = "33.0.0-jre")
implementation(group = "org.jooq", name = "jool", version = "0.9.14")

val junitVersion = "5.10.1"
val junitVersion = "5.10.2"
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter-api", version = junitVersion)
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter-params", version = junitVersion)
testImplementation(group = "org.junit-pioneer", name = "junit-pioneer", version = "2.2.0")
testRuntimeOnly(group = "org.junit.jupiter", name = "junit-jupiter-engine", version = junitVersion)
testImplementation(group = "org.assertj", name = "assertj-core", version = "3.25.1")
val mockitoVersion = "5.8.0"
testImplementation(group = "org.assertj", name = "assertj-core", version = "3.25.3")
val mockitoVersion = "5.10.0"
testImplementation(group = "org.mockito", name = "mockito-core", version = mockitoVersion)
testImplementation(group = "org.mockito", name = "mockito-junit-jupiter", version = mockitoVersion)

Expand All @@ -43,7 +43,7 @@ dependencies {
name = "schema-registry-mock-junit5",
version = fluentKafkaVersion
)
testImplementation(group = "net.mguenther.kafka", name = "kafka-junit", version = "3.5.0") {
testImplementation(group = "net.mguenther.kafka", name = "kafka-junit", version = "3.6.0") {
exclude(group = "org.slf4j", module = "slf4j-log4j12")
}

Expand Down

0 comments on commit a7a7f68

Please sign in to comment.