Skip to content

Commit

Permalink
bump kstreams
Browse files Browse the repository at this point in the history
  • Loading branch information
rtc11 committed Mar 14, 2024
1 parent 7ef9b87 commit d63d334
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions kafka-2/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dependencies {
implementation(project(":cache"))

implementation("org.apache.kafka:kafka-streams:3.5.1")
implementation("org.apache.kafka:kafka-streams:3.7.0")

implementation("ch.qos.logback:logback-classic:1.5.3")
implementation("net.logstash.logback:logstash-logback-encoder:7.4")
Expand All @@ -12,7 +12,7 @@ dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0")

testImplementation(kotlin("test"))
testImplementation("org.apache.kafka:kafka-streams-test-utils:3.5.1") {
testImplementation("org.apache.kafka:kafka-streams-test-utils:3.7.0") {
exclude("org.apache.kafka", "kafka-clients")
}
}
6 changes: 3 additions & 3 deletions kafka-avroserde/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ repositories {
dependencies {
implementation(project(":kafka-2"))

api("org.apache.kafka:kafka-streams:3.5.1")
api("org.apache.kafka:kafka-streams:3.7.0")
api("io.confluent:kafka-streams-avro-serde:7.4.0")

implementation("ch.qos.logback:logback-classic:1.5.3")
Expand All @@ -17,13 +17,13 @@ dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0")

testImplementation(kotlin("test"))
testImplementation("org.apache.kafka:kafka-streams-test-utils:3.5.1") {
testImplementation("org.apache.kafka:kafka-streams-test-utils:3.7.0") {
exclude("org.apache.kafka", "kafka-clients")
}
}

configurations.all {
resolutionStrategy {
force("org.apache.kafka:kafka-clients:3.5.1")
force("org.apache.kafka:kafka-clients:3.7.0")
}
}
4 changes: 2 additions & 2 deletions kafka-test-2/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
dependencies {
api("org.apache.kafka:kafka-streams-test-utils:3.5.1") {
api("org.apache.kafka:kafka-streams-test-utils:3.7.0") {
exclude("org.apache.kafka", "kafka-clients")
}

implementation(project(":kafka-2"))
implementation("org.apache.kafka:kafka-streams:3.5.1")
implementation("org.apache.kafka:kafka-streams:3.7.0")

implementation(kotlin("test"))

Expand Down
2 changes: 1 addition & 1 deletion kafka/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dependencies {
implementation("org.apache.kafka:kafka-clients:3.5.1")
implementation("org.apache.kafka:kafka-clients:3.7.0")
testImplementation(kotlin("test"))
}

0 comments on commit d63d334

Please sign in to comment.