Skip to content

Commit 5cbbbd8

Browse files
authored
Narrow refs to Spring Boot (#420)
1 parent 77ab89c commit 5cbbbd8

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

buildSrc/build.gradle

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@ configurations {
3838
}
3939
}
4040

41-
ext {
42-
springBootVersion = '3.2.0-SNAPSHOT'
43-
}
44-
4541
dependencies {
4642
implementation localGroovy()
4743
implementation 'commons-codec:commons-codec:1.15'

gradle.properties

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ org.gradle.jvmargs=-Xmx4g -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC -Df
66

77
pulsarClientVersion=3.0.0
88
pulsarClientReactiveVersion=0.3.0
9+
10+
# only used by docs, tests, and samples (unpublished deps)
911
springBootVersion=3.2.0-SNAPSHOT
12+
1013
springFrameworkVersion=6.0.9
14+
1115
# these are temp until autoconfig moves into boot
1216
springPulsarStarterVersion=0.2.1-SNAPSHOT
1317
springPulsarBinderVersion=0.2.1-SNAPSHOT

spring-pulsar-dependencies/spring-pulsar-dependencies.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ dependencies {
2828
api "org.apache.pulsar:pulsar-client-all:$pulsarClientVersion"
2929
api "org.apache.pulsar:pulsar-client-reactive-adapter:$pulsarClientReactiveVersion"
3030
api "org.apache.pulsar:pulsar-client-reactive-producer-cache-caffeine-shaded:$pulsarClientReactiveVersion"
31-
// spring-pulsar tests (OutputCaptureExtension)
32-
api "org.springframework.boot:spring-boot-test:$springBootVersion"
3331
api "org.springframework.retry:spring-retry:2.0.1"
3432
}
3533
}

spring-pulsar/spring-pulsar.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ dependencies {
4040
testImplementation 'org.junit.jupiter:junit-jupiter'
4141
testImplementation 'org.mockito:mockito-junit-jupiter'
4242
testImplementation 'org.springframework:spring-test'
43+
4344
// OutputCaptureExtension used by PulsarFunctionAdministrationTests
44-
testImplementation 'org.springframework.boot:spring-boot-test'
45+
testImplementation "org.springframework.boot:spring-boot-test:$springBootVersion"
4546
}

0 commit comments

Comments
 (0)