spring-boot/spring-boot-project/spring-boot-starters/spring-boot-starter-artemis/build.gradle
2022-01-07 15:26:39 +00:00

14 lines
369 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-jakarta-client") {
exclude group: "commons-logging", module: "commons-logging"
}
}