
This commit updates the Reactive client used by Spring Pulsar to version 0.4.0. The updated client fixes an issue where the non-reactive and reactive shaded producer cache had the same relocation prefix. This allows the removal of the shaded relocation prefixes from the checkRuntimeClasspathForConflicts ignore closure. See gh-37801
17 lines
485 B
Groovy
17 lines
485 B
Groovy
plugins {
|
|
id "org.springframework.boot.starter"
|
|
}
|
|
|
|
description = "Starter for using Spring for Apache Pulsar Reactive"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
|
|
api("org.springframework.pulsar:spring-pulsar-reactive")
|
|
}
|
|
|
|
checkRuntimeClasspathForConflicts {
|
|
ignore { name -> name.startsWith("org/bouncycastle/") ||
|
|
name.matches("^org\\/apache\\/pulsar\\/.*\\/package-info.class\$") ||
|
|
name.equals("findbugsExclude.xml") }
|
|
}
|