2022-01-07 20:35:46 +08:00
|
|
|
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")
|
2022-01-07 22:03:21 +08:00
|
|
|
api("org.apache.activemq:artemis-jakarta-client") {
|
2022-01-07 20:35:46 +08:00
|
|
|
exclude group: "commons-logging", module: "commons-logging"
|
|
|
|
}
|
|
|
|
}
|