13 lines
359 B
Groovy
13 lines
359 B
Groovy
|
plugins {
|
||
|
id "java"
|
||
|
}
|
||
|
|
||
|
description = "Spring Boot Actuator ActiveMQ Embedded smoke test"
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-activemq"))
|
||
|
|
||
|
runtimeOnly("org.apache.activemq:activemq-broker")
|
||
|
|
||
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
||
|
}
|