File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-session-mongo
src/dockerTest/java/smoketest/session/mongodb Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id " java"
3
3
id " org.springframework.boot.conventions"
4
+ id " org.springframework.boot.docker-test"
4
5
}
5
6
6
7
description = " Spring Boot Session Mongodb smoke test"
7
8
8
9
dependencies {
10
+ dockerTestImplementation(" org.testcontainers:mongodb" )
11
+ dockerTestImplementation(" org.testcontainers:junit-jupiter" )
12
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-testcontainers" ))
13
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
14
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
15
+
9
16
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-actuator" ))
10
17
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-security" ))
11
18
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-data-mongodb" ))
12
19
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-web" ))
13
20
implementation(" org.springframework.session:spring-session-data-mongodb" )
14
-
15
- testImplementation(" org.testcontainers:mongodb" )
16
- testImplementation(" org.testcontainers:junit-jupiter" )
17
- testImplementation(project(" :spring-boot-project:spring-boot-testcontainers" ))
18
- testImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
19
- testImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
20
21
}
File renamed without changes.
You can’t perform that action at this time.
0 commit comments