Files
spring-pulsar/spring-pulsar-sample-apps/sample-pulsar-reader/build.gradle
Soby Chacko 0621c540d6 PulsarReader Infrastructure
- Introducing PulsarReader annotation
 - Annotation bean post processor for PulsarReader
 - PulsarReader container and registry
 - PulsarReader endpoint and registry
 - PulsarReaderConfigurer
 - PulsarReader based listener adapter
 - PulsarReader annotation driven Boot auto configuration

Resolves https://github.com/spring-projects-experimental/spring-pulsar/issues/353
2023-02-17 14:39:13 -05:00

28 lines
803 B
Groovy

plugins {
id 'org.springframework.pulsar.spring-module'
id 'org.springframework.boot' version '3.0.2'
}
description = 'Spring Pulsar Sample Application (Send and Receive)'
dependencies {
implementation project(':spring-pulsar-spring-boot-starter')
implementation 'com.google.code.findbugs:jsr305'
}
bootRun {
jvmArgs = [
"--add-opens", "java.base/java.lang=ALL-UNNAMED",
"--add-opens", "java.base/java.util=ALL-UNNAMED",
"--add-opens", "java.base/sun.net=ALL-UNNAMED"
]
}
project.afterEvaluate {
project.tasks.publishArtifacts.enabled(false)
project.tasks.artifactoryPublish.enabled(false)
project.tasks.publishToOssrh.enabled(false)
project.tasks.publishMavenJavaPublicationToOssrhRepository.enabled(false)
project.tasks.publishAllPublicationsToOssrhRepository.enabled(false)
}