Update reactive client to 0.3.0 (#395)

This commit is contained in:
Christophe Bornet
2023-04-26 17:52:37 +02:00
committed by GitHub
parent 231a4e643a
commit 2280a49095
2 changed files with 3 additions and 9 deletions

View File

@@ -11,7 +11,7 @@ ext {
protobufJavaVersion = '3.21.5'
testcontainersVersion = '1.17.6'
pulsarVersion = '2.11.0'
pulsarClientReactiveVersion = '0.2.0'
pulsarClientReactiveVersion = '0.3.0'
springBootVersion = '3.0.5'
springPulsarStarterVersion = '0.2.1-SNAPSHOT'
springPulsarBinderVersion = '0.2.0'

View File

@@ -7,10 +7,7 @@ description = 'Spring Pulsar Reactive Support'
dependencies {
api project (':spring-pulsar')
api ('org.apache.pulsar:pulsar-client-reactive-adapter') {
// remove when reactive client updates to 2.11
exclude group: 'org.apache.pulsar', module: 'pulsar-client'
}
api 'org.apache.pulsar:pulsar-client-reactive-adapter'
implementation 'com.fasterxml.jackson.core:jackson-core'
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'com.google.code.findbugs:jsr305'
@@ -20,10 +17,7 @@ dependencies {
optional 'com.google.protobuf:protobuf-java'
optional 'com.jayway.jsonpath:json-path'
optional 'io.projectreactor:reactor-core'
optional ('org.apache.pulsar:pulsar-client-reactive-producer-cache-caffeine') {
// remove when reactive client updates to 2.11
exclude group: 'org.apache.pulsar', module: 'pulsar-client-reactive-adapter'
}
optional 'org.apache.pulsar:pulsar-client-reactive-producer-cache-caffeine'
testImplementation project(':spring-pulsar-test')
testRuntimeOnly 'ch.qos.logback:logback-classic'