@@ -3,13 +3,25 @@ plugins {
3
3
id " org.springframework.boot.conventions"
4
4
id " org.springframework.boot.configuration-properties"
5
5
id " org.springframework.boot.optional-dependencies"
6
+ id " org.springframework.boot.docker-test"
6
7
id " org.springframework.boot.deployed"
7
8
}
8
9
9
10
description = " Spring Boot Actuator"
10
11
11
12
dependencies {
12
13
api(project(" :spring-boot-project:spring-boot" ))
14
+
15
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-autoconfigure" ))
16
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-test" ))
17
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
18
+ dockerTestImplementation(" org.assertj:assertj-core" )
19
+ dockerTestImplementation(" org.junit.jupiter:junit-jupiter" )
20
+ dockerTestImplementation(" org.springframework:spring-test" )
21
+ dockerTestImplementation(" org.testcontainers:junit-jupiter" )
22
+ dockerTestImplementation(" org.testcontainers:mongodb" )
23
+ dockerTestImplementation(" org.testcontainers:neo4j" )
24
+ dockerTestImplementation(" org.testcontainers:testcontainers" )
13
25
14
26
optional(" com.datastax.oss:java-driver-core" ) {
15
27
exclude group : " org.slf4j" , module : " jcl-over-slf4j"
@@ -98,10 +110,6 @@ dependencies {
98
110
testImplementation(" org.skyscreamer:jsonassert" )
99
111
testImplementation(" org.springframework:spring-test" )
100
112
testImplementation(" com.squareup.okhttp3:mockwebserver" )
101
- testImplementation(" org.testcontainers:junit-jupiter" )
102
- testImplementation(" org.testcontainers:mongodb" )
103
- testImplementation(" org.testcontainers:neo4j" )
104
- testImplementation(" org.testcontainers:testcontainers" )
105
113
106
114
testRuntimeOnly(" ch.qos.logback:logback-classic" )
107
115
testRuntimeOnly(" io.projectreactor.netty:reactor-netty-http" )
0 commit comments