Browse Source

Upgrade to Pulsar 4.0.6

Closes gh-46745
pull/46755/head
Stéphane Nicoll 4 months ago
parent
commit
ad8ca01ca4
  1. 8
      documentation/spring-boot-docs/build.gradle
  2. 8
      module/spring-boot-pulsar/build.gradle
  3. 2
      platform/spring-boot-dependencies/build.gradle
  4. 4
      starter/spring-boot-starter-pulsar-reactive/build.gradle

8
documentation/spring-boot-docs/build.gradle

@ -177,8 +177,12 @@ dependencies {
implementation("org.springframework.graphql:spring-graphql-test") implementation("org.springframework.graphql:spring-graphql-test")
implementation("org.springframework.kafka:spring-kafka") implementation("org.springframework.kafka:spring-kafka")
implementation("org.springframework.kafka:spring-kafka-test") implementation("org.springframework.kafka:spring-kafka-test")
implementation("org.springframework.pulsar:spring-pulsar") implementation("org.springframework.pulsar:spring-pulsar") {
implementation("org.springframework.pulsar:spring-pulsar-reactive") exclude group: "commons-logging", module: "commons-logging"
}
implementation("org.springframework.pulsar:spring-pulsar-reactive") {
exclude group: "commons-logging", module: "commons-logging"
}
implementation("org.springframework.restdocs:spring-restdocs-mockmvc") implementation("org.springframework.restdocs:spring-restdocs-mockmvc")
implementation("org.springframework.restdocs:spring-restdocs-restassured") implementation("org.springframework.restdocs:spring-restdocs-restassured")
implementation("org.springframework.restdocs:spring-restdocs-webtestclient") implementation("org.springframework.restdocs:spring-restdocs-webtestclient")

8
module/spring-boot-pulsar/build.gradle

@ -27,12 +27,16 @@ description = "Spring Boot Pulsar"
dependencies { dependencies {
api(project(":module:spring-boot-tx")) api(project(":module:spring-boot-tx"))
api("org.springframework.pulsar:spring-pulsar") api("org.springframework.pulsar:spring-pulsar") {
exclude group: "commons-logging", module: "commons-logging"
}
optional(project(":core:spring-boot-autoconfigure")) optional(project(":core:spring-boot-autoconfigure"))
optional(project(":core:spring-boot-docker-compose")) optional(project(":core:spring-boot-docker-compose"))
optional(project(":core:spring-boot-testcontainers")) optional(project(":core:spring-boot-testcontainers"))
optional("org.springframework.pulsar:spring-pulsar-reactive") optional("org.springframework.pulsar:spring-pulsar-reactive") {
exclude group: "commons-logging", module: "commons-logging"
}
optional("org.testcontainers:pulsar") optional("org.testcontainers:pulsar")
dockerTestImplementation(project(":core:spring-boot-test")) dockerTestImplementation(project(":core:spring-boot-test"))

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

@ -1762,7 +1762,7 @@ bom {
releaseNotes("https://github.com/prometheus/client_java/releases/tag/parent-{version}") releaseNotes("https://github.com/prometheus/client_java/releases/tag/parent-{version}")
} }
} }
library("Pulsar", "4.0.5") { library("Pulsar", "4.0.6") {
group("org.apache.pulsar") { group("org.apache.pulsar") {
bom("pulsar-bom") { bom("pulsar-bom") {
permit("org.apache.maven.plugin-tools:maven-plugin-annotations") permit("org.apache.maven.plugin-tools:maven-plugin-annotations")

4
starter/spring-boot-starter-pulsar-reactive/build.gradle

@ -25,7 +25,9 @@ dependencies {
api(project(":module:spring-boot-pulsar")) api(project(":module:spring-boot-pulsar"))
api(project(":module:spring-boot-reactor")) api(project(":module:spring-boot-reactor"))
api("org.springframework.pulsar:spring-pulsar-reactive") api("org.springframework.pulsar:spring-pulsar-reactive") {
exclude group: "commons-logging", module: "commons-logging"
}
} }
checkRuntimeClasspathForConflicts { checkRuntimeClasspathForConflicts {

Loading…
Cancel
Save