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 11plugins {
22 id " java"
33 id " org.springframework.boot.conventions"
4+ id " org.springframework.boot.docker-test"
45}
56
67description = " Spring Boot Session Mongodb smoke test"
78
89dependencies {
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+
916 implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-actuator" ))
1017 implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-security" ))
1118 implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-data-mongodb" ))
1219 implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-web" ))
1320 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" ))
2021}
File renamed without changes.
You can’t perform that action at this time.
0 commit comments