spring-boot/spring-boot-project/spring-boot-starters/spring-boot-starter-pulsar/build.gradle

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
461 B
Groovy
Raw Permalink Normal View History

plugins {
id "org.springframework.boot.starter"
}
description = "Starter for using Spring for Apache Pulsar"
dependencies {
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
api("org.springframework.pulsar:spring-pulsar")
}
checkRuntimeClasspathForConflicts {
ignore { name -> name.startsWith("org/bouncycastle/") ||
name.matches("^org/apache/pulsar/.*/package-info.class\$") ||
name.equals("findbugsExclude.xml") }
}