Skip to content

Commit fda6f19

Browse files
committed
Update spring-boot-smoke-test-session-webflux-redis to use docker-test plugin
See gh-41228
1 parent 5e332b8 commit fda6f19

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
plugins {
22
id "java"
33
id "org.springframework.boot.conventions"
4+
id "org.springframework.boot.docker-test"
45
}
56

67
description = "Spring Boot Session WebFlux Redis 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.testcontainers:junit-jupiter")
14+
915
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security"))
1016
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-webflux"))
1117

1218
runtimeOnly(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis-reactive"))
1319
runtimeOnly("org.springframework.session:spring-session-data-redis")
14-
15-
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
16-
testImplementation(project(":spring-boot-project:spring-boot-testcontainers"))
17-
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
18-
testImplementation("org.testcontainers:junit-jupiter")
1920
}

0 commit comments

Comments
 (0)