Skip to content

Commit da28e03

Browse files
committed
Update spring-boot-smoke-test-pulsar to use docker-test plugin
See gh-41228
1 parent bc57d30 commit da28e03

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed
Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
plugins {
22
id "java"
33
id "org.springframework.boot.conventions"
4+
id "org.springframework.boot.docker-test"
45
}
56

67
description = "Spring Boot Pulsar 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-tools:spring-boot-test-support"))
12+
dockerTestImplementation(project(":spring-boot-project:spring-boot-testcontainers"))
13+
dockerTestImplementation("org.awaitility:awaitility")
14+
dockerTestImplementation("org.testcontainers:junit-jupiter")
15+
dockerTestImplementation("org.testcontainers:pulsar")
16+
917
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-pulsar"))
1018
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-pulsar-reactive"))
11-
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
12-
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
13-
testImplementation(project(":spring-boot-project:spring-boot-testcontainers"))
14-
testImplementation("org.awaitility:awaitility")
15-
testImplementation("org.testcontainers:junit-jupiter")
16-
testImplementation("org.testcontainers:pulsar")
1719
}

0 commit comments

Comments
 (0)