Skip to content

Commit 24e797f

Browse files
committed
Update spring-boot-smoke-test-amqp to use docker-test plugin
See gh-41228
1 parent 0579126 commit 24e797f

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
plugins {
22
id "java"
33
id "org.springframework.boot.conventions"
4+
id "org.springframework.boot.docker-test"
45
}
56

67
description = "Spring Boot AMQP smoke test"
78

89
dependencies {
10+
dockerTestImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
11+
dockerTestImplementation(project(":spring-boot-project:spring-boot-testcontainers"))
12+
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
13+
dockerTestImplementation("org.awaitility:awaitility")
14+
dockerTestImplementation("org.testcontainers:junit-jupiter")
15+
dockerTestImplementation("org.testcontainers:rabbitmq")
16+
917
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-amqp"))
10-
11-
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
12-
testImplementation(project(":spring-boot-project:spring-boot-testcontainers"))
13-
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
14-
testImplementation("org.awaitility:awaitility")
15-
testImplementation("org.testcontainers:junit-jupiter")
16-
testImplementation("org.testcontainers:rabbitmq")
1718
}

0 commit comments

Comments
 (0)