Skip to content

Commit 2890067

Browse files
committed
Update spring-boot-smoke-test-session-redis to use docker-test plugin
See gh-41228
1 parent b3f3501 commit 2890067

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed
Lines changed: 6 additions & 5 deletions
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 Mongodb smoke test"
78

89
dependencies {
10+
dockerTestImplementation(project(":spring-boot-project:spring-boot-testcontainers"))
11+
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
12+
dockerTestImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
13+
dockerTestImplementation("org.testcontainers:junit-jupiter")
14+
915
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator"))
1016
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security"))
1117
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis"))
1218
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
1319
implementation("org.springframework.session:spring-session-data-redis")
14-
15-
testImplementation("org.testcontainers:junit-jupiter")
16-
testImplementation(project(":spring-boot-project:spring-boot-testcontainers"))
17-
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
18-
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
1920
}

0 commit comments

Comments
 (0)