@@ -5,13 +5,29 @@ plugins {
5
5
id " org.springframework.boot.configuration-properties"
6
6
id " org.springframework.boot.conventions"
7
7
id " org.springframework.boot.deployed"
8
+ id " org.springframework.boot.docker-test"
8
9
id " org.springframework.boot.optional-dependencies"
9
10
}
10
11
11
12
description = " Spring Boot AutoConfigure"
12
13
13
14
dependencies {
14
15
api(project(" :spring-boot-project:spring-boot" ))
16
+
17
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-test" ))
18
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
19
+ dockerTestImplementation(" org.assertj:assertj-core" )
20
+ dockerTestImplementation(" org.junit.jupiter:junit-jupiter" )
21
+ dockerTestImplementation(" org.mockito:mockito-core" )
22
+ dockerTestImplementation(" org.springframework:spring-test" )
23
+ dockerTestImplementation(" org.testcontainers:cassandra" )
24
+ dockerTestImplementation(" org.testcontainers:couchbase" )
25
+ dockerTestImplementation(" org.testcontainers:elasticsearch" )
26
+ dockerTestImplementation(" org.testcontainers:junit-jupiter" )
27
+ dockerTestImplementation(" org.testcontainers:mongodb" )
28
+ dockerTestImplementation(" org.testcontainers:neo4j" )
29
+ dockerTestImplementation(" org.testcontainers:pulsar" )
30
+ dockerTestImplementation(" org.testcontainers:testcontainers" )
15
31
16
32
optional(" co.elastic.clients:elasticsearch-java" ) {
17
33
exclude group : " commons-logging" , module : " commons-logging"
@@ -245,14 +261,6 @@ dependencies {
245
261
}
246
262
testImplementation(" org.springframework.pulsar:spring-pulsar-cache-provider-caffeine" )
247
263
testImplementation(" org.springframework.security:spring-security-test" )
248
- testImplementation(" org.testcontainers:cassandra" )
249
- testImplementation(" org.testcontainers:couchbase" )
250
- testImplementation(" org.testcontainers:elasticsearch" )
251
- testImplementation(" org.testcontainers:junit-jupiter" )
252
- testImplementation(" org.testcontainers:mongodb" )
253
- testImplementation(" org.testcontainers:neo4j" )
254
- testImplementation(" org.testcontainers:pulsar" )
255
- testImplementation(" org.testcontainers:testcontainers" )
256
264
testImplementation(" org.yaml:snakeyaml" )
257
265
258
266
testRuntimeOnly(" jakarta.management.j2ee:jakarta.management.j2ee-api" )
0 commit comments