16 lines
658 B
Groovy
16 lines
658 B
Groovy
plugins {
|
|
id "java"
|
|
id "org.springframework.boot.docker-test"
|
|
}
|
|
|
|
description = "Spring Boot Actuator ActiveMQ smoke test"
|
|
|
|
dependencies {
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-testcontainers"))
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
|
|
dockerTestImplementation("org.awaitility:awaitility")
|
|
dockerTestImplementation("org.testcontainers:junit-jupiter")
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-activemq"))
|
|
} |