2023-08-31 07:39:37 +08:00
|
|
|
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/") ||
|
2024-03-27 16:34:39 +08:00
|
|
|
name.matches("^org/apache/pulsar/.*/package-info.class\$") ||
|
2023-10-10 11:43:10 +08:00
|
|
|
name.equals("findbugsExclude.xml") }
|
2023-08-31 07:39:37 +08:00
|
|
|
}
|