14 lines
365 B
Groovy
14 lines
365 B
Groovy
plugins {
|
|
id "org.springframework.boot.starter"
|
|
}
|
|
|
|
description = "Starter for JMS messaging using Apache Artemis"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
|
|
api("org.springframework:spring-jms")
|
|
api("org.apache.activemq:artemis-jms-client") {
|
|
exclude group: "commons-logging", module: "commons-logging"
|
|
}
|
|
}
|