Skip to content

Commit 629777b

Browse files
committed
Upgrade to Pulsar 4.1.0
Closes gh-47170
1 parent 9ffe550 commit 629777b

File tree

4 files changed

+6
-16
lines changed

4 files changed

+6
-16
lines changed

documentation/spring-boot-docs/build.gradle

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -179,12 +179,8 @@ dependencies {
179179
implementation("org.springframework.graphql:spring-graphql-test")
180180
implementation("org.springframework.kafka:spring-kafka")
181181
implementation("org.springframework.kafka:spring-kafka-test")
182-
implementation("org.springframework.pulsar:spring-pulsar") {
183-
exclude group: "commons-logging", module: "commons-logging"
184-
}
185-
implementation("org.springframework.pulsar:spring-pulsar-reactive") {
186-
exclude group: "commons-logging", module: "commons-logging"
187-
}
182+
implementation("org.springframework.pulsar:spring-pulsar")
183+
implementation("org.springframework.pulsar:spring-pulsar-reactive")
188184
implementation("org.springframework.restdocs:spring-restdocs-mockmvc")
189185
implementation("org.springframework.restdocs:spring-restdocs-restassured")
190186
implementation("org.springframework.restdocs:spring-restdocs-webtestclient")

module/spring-boot-pulsar/build.gradle

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

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

3432
optional(project(":core:spring-boot-autoconfigure"))
3533
optional(project(":core:spring-boot-docker-compose"))
3634
optional(project(":core:spring-boot-testcontainers"))
37-
optional("org.springframework.pulsar:spring-pulsar-reactive") {
38-
exclude group: "commons-logging", module: "commons-logging"
39-
}
35+
optional("org.springframework.pulsar:spring-pulsar-reactive")
4036
optional("org.testcontainers:pulsar")
4137

4238
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
@@ -1771,7 +1771,7 @@ bom {
17711771
releaseNotes("https://github.com/prometheus/client_java/releases/tag/parent-{version}")
17721772
}
17731773
}
1774-
library("Pulsar", "4.0.6") {
1774+
library("Pulsar", "4.1.0") {
17751775
group("org.apache.pulsar") {
17761776
bom("pulsar-bom") {
17771777
permit("org.apache.maven.plugin-tools:maven-plugin-annotations")

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

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

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

3331
checkRuntimeClasspathForConflicts {

0 commit comments

Comments
 (0)