11plugins {
22 id " java"
33 id " org.springframework.boot.conventions"
4+ id " org.springframework.boot.docker-test"
45}
56
67description = " Spring Boot Data MongoDB smoke test"
78
89dependencies {
10+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-test" ))
11+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
12+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
13+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-testcontainers" ))
14+ dockerTestImplementation(" io.projectreactor:reactor-test" )
15+ dockerTestImplementation(" org.junit.jupiter:junit-jupiter" )
16+ dockerTestImplementation(" org.junit.platform:junit-platform-engine" )
17+ dockerTestImplementation(" org.junit.platform:junit-platform-launcher" )
18+ dockerTestImplementation(" org.testcontainers:junit-jupiter" )
19+ dockerTestImplementation(" org.testcontainers:testcontainers" )
20+ dockerTestImplementation(" org.testcontainers:mongodb" )
21+
922 implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-data-mongodb" ))
1023 implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-data-mongodb-reactive" ))
11- implementation(" io.projectreactor:reactor-core" )
12-
13- testImplementation(project(" :spring-boot-project:spring-boot-test" ))
14- testImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
15- testImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
16- testImplementation(project(" :spring-boot-project:spring-boot-testcontainers" ))
17- testImplementation(" io.projectreactor:reactor-test" )
18- testImplementation(" org.junit.jupiter:junit-jupiter" )
19- testImplementation(" org.junit.platform:junit-platform-engine" )
20- testImplementation(" org.junit.platform:junit-platform-launcher" )
21- testImplementation(" org.testcontainers:junit-jupiter" )
22- testImplementation(" org.testcontainers:testcontainers" )
23- testImplementation(" org.testcontainers:mongodb" )
24+ implementation(" io.projectreactor:reactor-core" )
2425}
0 commit comments