Narrow refs to Spring Boot (#420)

This commit is contained in:
Chris Bono
2023-07-18 22:26:17 -05:00
committed by GitHub
parent 77ab89c690
commit 5cbbbd86c3
4 changed files with 6 additions and 7 deletions

View File

@@ -38,10 +38,6 @@ configurations {
}
}
ext {
springBootVersion = '3.2.0-SNAPSHOT'
}
dependencies {
implementation localGroovy()
implementation 'commons-codec:commons-codec:1.15'

View File

@@ -6,8 +6,12 @@ org.gradle.jvmargs=-Xmx4g -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC -Df
pulsarClientVersion=3.0.0
pulsarClientReactiveVersion=0.3.0
# only used by docs, tests, and samples (unpublished deps)
springBootVersion=3.2.0-SNAPSHOT
springFrameworkVersion=6.0.9
# these are temp until autoconfig moves into boot
springPulsarStarterVersion=0.2.1-SNAPSHOT
springPulsarBinderVersion=0.2.1-SNAPSHOT

View File

@@ -28,8 +28,6 @@ dependencies {
api "org.apache.pulsar:pulsar-client-all:$pulsarClientVersion"
api "org.apache.pulsar:pulsar-client-reactive-adapter:$pulsarClientReactiveVersion"
api "org.apache.pulsar:pulsar-client-reactive-producer-cache-caffeine-shaded:$pulsarClientReactiveVersion"
// spring-pulsar tests (OutputCaptureExtension)
api "org.springframework.boot:spring-boot-test:$springBootVersion"
api "org.springframework.retry:spring-retry:2.0.1"
}
}

View File

@@ -40,6 +40,7 @@ dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.mockito:mockito-junit-jupiter'
testImplementation 'org.springframework:spring-test'
// OutputCaptureExtension used by PulsarFunctionAdministrationTests
testImplementation 'org.springframework.boot:spring-boot-test'
testImplementation "org.springframework.boot:spring-boot-test:$springBootVersion"
}