31 lines
1.1 KiB
Groovy
31 lines
1.1 KiB
Groovy
|
plugins {
|
||
|
id "java-library"
|
||
|
id "org.springframework.boot.auto-configuration"
|
||
|
id "org.springframework.boot.configuration-properties"
|
||
|
id "org.springframework.boot.deployed"
|
||
|
id "org.springframework.boot.optional-dependencies"
|
||
|
}
|
||
|
|
||
|
description = "Spring Boot ActiveMQ"
|
||
|
|
||
|
dependencies {
|
||
|
api(project(":spring-boot-project:spring-boot-jms"))
|
||
|
api("org.apache.activemq:activemq-client")
|
||
|
|
||
|
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
||
|
optional("jakarta.transaction:jakarta.transaction-api")
|
||
|
optional("org.apache.activemq:activemq-broker")
|
||
|
optional("org.messaginghub:pooled-jms") {
|
||
|
exclude group: "org.apache.geronimo.specs", module: "geronimo-jms_2.0_spec"
|
||
|
}
|
||
|
|
||
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
||
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
||
|
testImplementation("org.assertj:assertj-core")
|
||
|
testImplementation("org.awaitility:awaitility")
|
||
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
||
|
testImplementation("org.mockito:mockito-core")
|
||
|
testImplementation("org.mockito:mockito-junit-jupiter")
|
||
|
|
||
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
||
|
}
|