File tree Expand file tree Collapse file tree 4 files changed +16
-6
lines changed
documentation/spring-boot-docs
module/spring-boot-pulsar
platform/spring-boot-dependencies
starter/spring-boot-starter-pulsar-reactive Expand file tree Collapse file tree 4 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -177,8 +177,12 @@ dependencies {
177
177
implementation(" org.springframework.graphql:spring-graphql-test" )
178
178
implementation(" org.springframework.kafka:spring-kafka" )
179
179
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
+ }
182
186
implementation(" org.springframework.restdocs:spring-restdocs-mockmvc" )
183
187
implementation(" org.springframework.restdocs:spring-restdocs-restassured" )
184
188
implementation(" org.springframework.restdocs:spring-restdocs-webtestclient" )
Original file line number Diff line number Diff line change @@ -27,12 +27,16 @@ description = "Spring Boot Pulsar"
27
27
28
28
dependencies {
29
29
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
+ }
31
33
32
34
optional(project(" :core:spring-boot-autoconfigure" ))
33
35
optional(project(" :core:spring-boot-docker-compose" ))
34
36
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
+ }
36
40
optional(" org.testcontainers:pulsar" )
37
41
38
42
dockerTestImplementation(project(" :core:spring-boot-test" ))
Original file line number Diff line number Diff line change @@ -1762,7 +1762,7 @@ bom {
1762
1762
releaseNotes(" https://github.com/prometheus/client_java/releases/tag/parent-{version}" )
1763
1763
}
1764
1764
}
1765
- library(" Pulsar" , " 4.0.5 " ) {
1765
+ library(" Pulsar" , " 4.0.6 " ) {
1766
1766
group(" org.apache.pulsar" ) {
1767
1767
bom(" pulsar-bom" ) {
1768
1768
permit(" org.apache.maven.plugin-tools:maven-plugin-annotations" )
Original file line number Diff line number Diff line change @@ -25,7 +25,9 @@ dependencies {
25
25
26
26
api(project(" :module:spring-boot-pulsar" ))
27
27
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
+ }
29
31
}
30
32
31
33
checkRuntimeClasspathForConflicts {
You can’t perform that action at this time.
0 commit comments