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 Data MongoDB smoke test"
7
8
8
9
dependencies {
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
+
9
22
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-data-mongodb" ))
10
23
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" )
24
25
}
0 commit comments