Skip to content

Commit 815bdc5

Browse files
committed
Upgrade to Pulsar 3.3.8
Closes gh-46716
1 parent a7eb7b1 commit 815bdc5

File tree

6 files changed

+28
-10
lines changed

6 files changed

+28
-10
lines changed

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ dependencies {
5353
dockerTestImplementation("org.testcontainers:junit-jupiter")
5454
dockerTestImplementation("org.testcontainers:mongodb")
5555
dockerTestImplementation("org.testcontainers:neo4j")
56-
dockerTestImplementation("org.testcontainers:pulsar")
56+
dockerTestImplementation("org.testcontainers:pulsar") {
57+
exclude group: "commons-logging", module: "commons-logging"
58+
}
5759
dockerTestImplementation("org.testcontainers:testcontainers")
5860

5961
optional("co.elastic.clients:elasticsearch-java") {
@@ -210,8 +212,12 @@ dependencies {
210212
optional("org.springframework.data:spring-data-redis")
211213
optional("org.springframework.graphql:spring-graphql")
212214
optional("org.springframework.hateoas:spring-hateoas")
213-
optional("org.springframework.pulsar:spring-pulsar")
214-
optional("org.springframework.pulsar:spring-pulsar-reactive")
215+
optional("org.springframework.pulsar:spring-pulsar") {
216+
exclude group: "commons-logging", module: "commons-logging"
217+
}
218+
optional("org.springframework.pulsar:spring-pulsar-reactive") {
219+
exclude group: "commons-logging", module: "commons-logging"
220+
}
215221
optional("org.springframework.security:spring-security-acl")
216222
optional("org.springframework.security:spring-security-config")
217223
optional("org.springframework.security:spring-security-data") {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1716,7 +1716,7 @@ bom {
17161716
releaseNotes("https://github.com/prometheus/client_java/releases/tag/parent-{version}")
17171717
}
17181718
}
1719-
library("Pulsar", "3.3.7") {
1719+
library("Pulsar", "3.3.8") {
17201720
group("org.apache.pulsar") {
17211721
bom("pulsar-bom") {
17221722
permit("org.apache.maven.plugin-tools:maven-plugin-annotations")

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,12 @@ dependencies {
160160
implementation("org.springframework.kafka:spring-kafka-test") {
161161
exclude group: "commons-logging", module: "commons-logging"
162162
}
163-
implementation("org.springframework.pulsar:spring-pulsar")
164-
implementation("org.springframework.pulsar:spring-pulsar-reactive")
163+
implementation("org.springframework.pulsar:spring-pulsar") {
164+
exclude group: "commons-logging", module: "commons-logging"
165+
}
166+
implementation("org.springframework.pulsar:spring-pulsar-reactive") {
167+
exclude group: "commons-logging", module: "commons-logging"
168+
}
165169
implementation("org.springframework.restdocs:spring-restdocs-mockmvc")
166170
implementation("org.springframework.restdocs:spring-restdocs-restassured")
167171
implementation("org.springframework.restdocs:spring-restdocs-webtestclient")

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ description = "Starter for using Spring for Apache Pulsar Reactive"
2222

2323
dependencies {
2424
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
25-
api("org.springframework.pulsar:spring-pulsar-reactive")
25+
api("org.springframework.pulsar:spring-pulsar-reactive") {
26+
exclude group: "commons-logging", module: "commons-logging"
27+
}
2628
}
2729

2830
checkRuntimeClasspathForConflicts {

spring-boot-project/spring-boot-starters/spring-boot-starter-pulsar/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ description = "Starter for using Spring for Apache Pulsar"
2222

2323
dependencies {
2424
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
25-
api("org.springframework.pulsar:spring-pulsar")
25+
api("org.springframework.pulsar:spring-pulsar") {
26+
exclude group: "commons-logging", module: "commons-logging"
27+
}
2628
}
2729

2830
checkRuntimeClasspathForConflicts {

spring-boot-project/spring-boot-testcontainers/build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ dependencies {
6565
dockerTestImplementation("org.springframework.data:spring-data-redis")
6666
dockerTestImplementation("org.springframework.kafka:spring-kafka")
6767
dockerTestImplementation("org.springframework.ldap:spring-ldap-core")
68-
dockerTestImplementation("org.springframework.pulsar:spring-pulsar")
68+
dockerTestImplementation("org.springframework.pulsar:spring-pulsar") {
69+
exclude group: "commons-logging", module: "commons-logging"
70+
}
6971
dockerTestImplementation("org.testcontainers:junit-jupiter")
7072

7173
dockerTestRuntimeOnly("com.oracle.database.r2dbc:oracle-r2dbc")
@@ -114,7 +116,9 @@ dependencies {
114116
testImplementation("org.springframework.amqp:spring-rabbit")
115117
testImplementation("org.springframework.data:spring-data-redis")
116118
testImplementation("org.springframework.kafka:spring-kafka")
117-
testImplementation("org.springframework.pulsar:spring-pulsar")
119+
testImplementation("org.springframework.pulsar:spring-pulsar") {
120+
exclude group: "commons-logging", module: "commons-logging"
121+
}
118122
testImplementation("org.testcontainers:junit-jupiter")
119123
}
120124

0 commit comments

Comments
 (0)