Browse Source

Upgrade to Kafka 3.6.0

Closes gh-37777
pull/37801/head
Andy Wilkinson 2 years ago
parent
commit
48059417b5
  1. 4
      spring-boot-project/spring-boot-autoconfigure/build.gradle
  2. 2
      spring-boot-project/spring-boot-dependencies/build.gradle
  3. 4
      spring-boot-project/spring-boot-docs/build.gradle
  4. 4
      spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-kafka/build.gradle

4
spring-boot-project/spring-boot-autoconfigure/build.gradle

@ -241,7 +241,9 @@ dependencies { @@ -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")

2
spring-boot-project/spring-boot-dependencies/build.gradle

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

4
spring-boot-project/spring-boot-docs/build.gradle

@ -162,7 +162,9 @@ dependencies { @@ -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")

4
spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-kafka/build.gradle

@ -11,5 +11,7 @@ dependencies { @@ -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"
}
}

Loading…
Cancel
Save