Skip to content

Commit ad8ca01

Browse files
committed
Upgrade to Pulsar 4.0.6
Closes gh-46745
1 parent c7783a5 commit ad8ca01

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

documentation/spring-boot-docs/build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,12 @@ dependencies {
177177
implementation("org.springframework.graphql:spring-graphql-test")
178178
implementation("org.springframework.kafka:spring-kafka")
179179
implementation("org.springframework.kafka:spring-kafka-test")
180-
implementation("org.springframework.pulsar:spring-pulsar")
181-
implementation("org.springframework.pulsar:spring-pulsar-reactive")
180+
implementation("org.springframework.pulsar:spring-pulsar") {
181+
exclude group: "commons-logging", module: "commons-logging"
182+
}
183+
implementation("org.springframework.pulsar:spring-pulsar-reactive") {
184+
exclude group: "commons-logging", module: "commons-logging"
185+
}
182186
implementation("org.springframework.restdocs:spring-restdocs-mockmvc")
183187
implementation("org.springframework.restdocs:spring-restdocs-restassured")
184188
implementation("org.springframework.restdocs:spring-restdocs-webtestclient")

module/spring-boot-pulsar/build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,16 @@ description = "Spring Boot Pulsar"
2727

2828
dependencies {
2929
api(project(":module:spring-boot-tx"))
30-
api("org.springframework.pulsar:spring-pulsar")
30+
api("org.springframework.pulsar:spring-pulsar") {
31+
exclude group: "commons-logging", module: "commons-logging"
32+
}
3133

3234
optional(project(":core:spring-boot-autoconfigure"))
3335
optional(project(":core:spring-boot-docker-compose"))
3436
optional(project(":core:spring-boot-testcontainers"))
35-
optional("org.springframework.pulsar:spring-pulsar-reactive")
37+
optional("org.springframework.pulsar:spring-pulsar-reactive") {
38+
exclude group: "commons-logging", module: "commons-logging"
39+
}
3640
optional("org.testcontainers:pulsar")
3741

3842
dockerTestImplementation(project(":core:spring-boot-test"))

platform/spring-boot-dependencies/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1762,7 +1762,7 @@ bom {
17621762
releaseNotes("https://github.com/prometheus/client_java/releases/tag/parent-{version}")
17631763
}
17641764
}
1765-
library("Pulsar", "4.0.5") {
1765+
library("Pulsar", "4.0.6") {
17661766
group("org.apache.pulsar") {
17671767
bom("pulsar-bom") {
17681768
permit("org.apache.maven.plugin-tools:maven-plugin-annotations")

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ dependencies {
2525

2626
api(project(":module:spring-boot-pulsar"))
2727
api(project(":module:spring-boot-reactor"))
28-
api("org.springframework.pulsar:spring-pulsar-reactive")
28+
api("org.springframework.pulsar:spring-pulsar-reactive") {
29+
exclude group: "commons-logging", module: "commons-logging"
30+
}
2931
}
3032

3133
checkRuntimeClasspathForConflicts {

0 commit comments

Comments
 (0)