Upgrade to Kafka 3.6.0

Closes gh-37777
This commit is contained in:
Andy Wilkinson 2023-10-09 12:13:42 +01:00
parent e645b0b61e
commit 48059417b5
4 changed files with 10 additions and 4 deletions

View File

@ -241,7 +241,9 @@ dependencies {
testImplementation("org.springframework:spring-test")
testImplementation("org.springframework:spring-core-test")
testImplementation("org.springframework.graphql:spring-graphql-test")
testImplementation("org.springframework.kafka:spring-kafka-test")
testImplementation("org.springframework.kafka:spring-kafka-test") {
exclude group: "commons-logging", module: "commons-logging"
}
testImplementation("org.springframework.pulsar:spring-pulsar-cache-provider-caffeine")
testImplementation("org.springframework.security:spring-security-test")
testImplementation("org.testcontainers:cassandra")

View File

@ -752,7 +752,7 @@ bom {
]
}
}
library("Kafka", "3.5.1") {
library("Kafka", "3.6.0") {
group("org.apache.kafka") {
modules = [
"connect",

View File

@ -162,7 +162,9 @@ dependencies {
implementation("org.springframework.graphql:spring-graphql")
implementation("org.springframework.graphql:spring-graphql-test")
implementation("org.springframework.kafka:spring-kafka")
implementation("org.springframework.kafka:spring-kafka-test")
implementation("org.springframework.kafka:spring-kafka-test") {
exclude group: "commons-logging", module: "commons-logging"
}
implementation("org.springframework.pulsar:spring-pulsar")
implementation("org.springframework.pulsar:spring-pulsar-reactive")
implementation("org.springframework.restdocs:spring-restdocs-mockmvc")

View File

@ -11,5 +11,7 @@ dependencies {
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
testImplementation("org.awaitility:awaitility")
testImplementation("org.springframework.kafka:spring-kafka-test")
testImplementation("org.springframework.kafka:spring-kafka-test") {
exclude group: "commons-logging", module: "commons-logging"
}
}