File tree Expand file tree Collapse file tree 38 files changed +86
-70
lines changed
spring-boot-autoconfigure
spring-boot-docker-compose
spring-boot-test-autoconfigure
spring-boot-testcontainers
spring-boot-buildpack-platform
spring-boot-gradle-plugin
spring-boot-test-support-docker
src/main/java/org/springframework/boot/testsupport/container
spring-boot-integration-tests
spring-boot-launch-script-tests
spring-boot-loader-classic-tests
spring-boot-smoke-test-activemq
spring-boot-smoke-test-amqp
spring-boot-smoke-test-cache
spring-boot-smoke-test-data-cassandra
spring-boot-smoke-test-data-couchbase
spring-boot-smoke-test-data-mongo
spring-boot-smoke-test-data-r2dbc-flyway
spring-boot-smoke-test-data-r2dbc-liquibase
spring-boot-smoke-test-data-redis
spring-boot-smoke-test-kafka
spring-boot-smoke-test-pulsar
spring-boot-smoke-test-session-mongo
spring-boot-smoke-test-session-redis
spring-boot-smoke-test-session-webflux-mongo
spring-boot-smoke-test-session-webflux-redis Expand file tree Collapse file tree 38 files changed +86
-70
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ include "spring-boot-project:spring-boot-tools:spring-boot-loader-tools"
64
64
include " spring-boot-project:spring-boot-tools:spring-boot-maven-plugin"
65
65
include " spring-boot-project:spring-boot-tools:spring-boot-properties-migrator"
66
66
include " spring-boot-project:spring-boot-tools:spring-boot-test-support"
67
+ include " spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"
67
68
include " spring-boot-project:spring-boot"
68
69
include " spring-boot-project:spring-boot-autoconfigure"
69
70
include " spring-boot-project:spring-boot-actuator"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ dependencies {
14
14
15
15
dockerTestImplementation(project(" :spring-boot-project:spring-boot-autoconfigure" ))
16
16
dockerTestImplementation(project(" :spring-boot-project:spring-boot-test" ))
17
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
17
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker " ))
18
18
dockerTestImplementation(" org.assertj:assertj-core" )
19
19
dockerTestImplementation(" org.junit.jupiter:junit-jupiter" )
20
20
dockerTestImplementation(" org.springframework:spring-test" )
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ description = "Spring Boot AutoConfigure"
13
13
14
14
dependencies {
15
15
api(project(" :spring-boot-project:spring-boot" ))
16
-
16
+
17
17
dockerTestImplementation(project(" :spring-boot-project:spring-boot-test" ))
18
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
18
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker " ))
19
19
dockerTestImplementation(" org.assertj:assertj-core" )
20
20
dockerTestImplementation(" org.junit.jupiter:junit-jupiter" )
21
21
dockerTestImplementation(" org.mockito:mockito-core" )
Original file line number Diff line number Diff line change 1
1
plugins {
2
- id " java-library"
2
+ id " java-library"
3
3
id " org.springframework.boot.configuration-properties"
4
4
id " org.springframework.boot.conventions"
5
5
id " org.springframework.boot.deployed"
6
6
id " org.springframework.boot.docker-test"
7
- id " org.springframework.boot.optional-dependencies"
7
+ id " org.springframework.boot.optional-dependencies"
8
8
}
9
9
10
10
description = " Spring Boot Docker Compose Support"
11
11
12
12
dependencies {
13
13
api(project(" :spring-boot-project:spring-boot" ))
14
14
15
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
15
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker " ))
16
16
dockerTestImplementation(" org.assertj:assertj-core" )
17
17
dockerTestImplementation(" org.awaitility:awaitility" )
18
18
dockerTestImplementation(" org.junit.jupiter:junit-jupiter" )
@@ -21,7 +21,7 @@ dependencies {
21
21
dockerTestRuntimeOnly(" com.microsoft.sqlserver:mssql-jdbc" )
22
22
dockerTestRuntimeOnly(" com.oracle.database.r2dbc:oracle-r2dbc" )
23
23
dockerTestRuntimeOnly(" io.r2dbc:r2dbc-mssql" )
24
-
24
+
25
25
implementation(" com.fasterxml.jackson.core:jackson-databind" )
26
26
implementation(" com.fasterxml.jackson.module:jackson-module-parameter-names" )
27
27
Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ dependencies {
12
12
api(project(" :spring-boot-project:spring-boot" ))
13
13
api(project(" :spring-boot-project:spring-boot-test" ))
14
14
api(project(" :spring-boot-project:spring-boot-autoconfigure" ))
15
-
15
+
16
16
dockerTestImplementation(project(" :spring-boot-project:spring-boot-testcontainers" ))
17
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
17
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker " ))
18
18
dockerTestImplementation(" io.projectreactor:reactor-test" )
19
19
dockerTestImplementation(" org.assertj:assertj-core" )
20
20
dockerTestImplementation(" org.junit.jupiter:junit-jupiter" )
@@ -25,7 +25,7 @@ dependencies {
25
25
dockerTestImplementation(" org.testcontainers:mongodb" )
26
26
dockerTestImplementation(" org.testcontainers:neo4j" )
27
27
dockerTestImplementation(" org.testcontainers:testcontainers" )
28
-
28
+
29
29
dockerTestRuntimeOnly(" io.lettuce:lettuce-core" )
30
30
dockerTestRuntimeOnly(" org.springframework.data:spring-data-redis" )
31
31
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ dependencies {
15
15
api(" org.testcontainers:testcontainers" )
16
16
17
17
dockerTestImplementation(project(" :spring-boot-project:spring-boot-test" ))
18
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
18
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker " ))
19
19
dockerTestImplementation(" ch.qos.logback:logback-classic" )
20
20
dockerTestImplementation(" co.elastic.clients:elasticsearch-java" ) {
21
21
exclude group : " commons-logging" , module : " commons-logging"
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ dependencies {
44
44
api(" org.springframework:spring-core" )
45
45
api(" org.tomlj:tomlj:1.0.0" )
46
46
47
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
47
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker " ))
48
48
dockerTestImplementation(" org.junit.jupiter:junit-jupiter" )
49
49
50
50
dockerTestRuntimeOnly(" org.testcontainers:testcontainers" )
Original file line number Diff line number Diff line change @@ -80,13 +80,13 @@ dependencies {
80
80
asciidoctorExtensions(" io.spring.asciidoctor:spring-asciidoctor-extensions-section-ids" )
81
81
82
82
dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-gradle-test-support" ))
83
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
83
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker " ))
84
84
dockerTestImplementation(gradleTestKit())
85
85
dockerTestImplementation(" org.assertj:assertj-core" )
86
86
dockerTestImplementation(" org.junit.jupiter:junit-jupiter" )
87
87
dockerTestImplementation(" org.testcontainers:junit-jupiter" )
88
88
dockerTestImplementation(" org.testcontainers:testcontainers" )
89
-
89
+
90
90
implementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-buildpack-platform" ))
91
91
implementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-loader-tools" ))
92
92
implementation(" io.spring.gradle:dependency-management-plugin" )
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ dependencies {
27
27
exclude(group : " javax.inject" , module : " javax.inject" )
28
28
}
29
29
30
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
30
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker " ))
31
31
dockerTestImplementation(" org.apache.maven.shared:maven-invoker" ) {
32
32
exclude(group : " javax.inject" , module : " javax.inject" )
33
33
}
Original file line number Diff line number Diff line change
1
+ plugins {
2
+ id " java-library"
3
+ id " org.springframework.boot.conventions"
4
+ id " org.springframework.boot.optional-dependencies"
5
+ }
6
+
7
+ description = " Spring Boot Docker Testing Support"
8
+
9
+ dependencies {
10
+ api(platform(project(path : " :spring-boot-project:spring-boot-parent" )))
11
+ api(project(path : " :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
12
+
13
+ compileOnly(" org.testcontainers:testcontainers" )
14
+
15
+ compileOnly(" org.junit.jupiter:junit-jupiter" )
16
+ compileOnly(" org.springframework:spring-core" )
17
+
18
+ optional(" org.testcontainers:cassandra" )
19
+ optional(" org.testcontainers:cassandra" )
20
+ optional(" org.testcontainers:couchbase" )
21
+ optional(" org.testcontainers:elasticsearch" )
22
+ optional(" org.testcontainers:junit-jupiter" )
23
+ optional(" org.testcontainers:kafka" )
24
+ optional(" org.testcontainers:mongodb" )
25
+ optional(" org.testcontainers:neo4j" )
26
+ optional(" org.testcontainers:oracle-xe" )
27
+ optional(" org.testcontainers:oracle-free" )
28
+ optional(" org.testcontainers:postgresql" )
29
+ optional(" org.testcontainers:pulsar" )
30
+ optional(" org.testcontainers:rabbitmq" )
31
+ optional(" org.testcontainers:redpanda" )
32
+ }
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -20,22 +20,6 @@ dependencies {
20
20
compileOnly(" org.mockito:mockito-core" )
21
21
compileOnly(" org.springframework:spring-context" )
22
22
compileOnly(" org.springframework.data:spring-data-redis" )
23
- compileOnly(" org.testcontainers:testcontainers" )
24
-
25
- optional(" org.testcontainers:cassandra" )
26
- optional(" org.testcontainers:cassandra" )
27
- optional(" org.testcontainers:couchbase" )
28
- optional(" org.testcontainers:elasticsearch" )
29
- optional(" org.testcontainers:junit-jupiter" )
30
- optional(" org.testcontainers:kafka" )
31
- optional(" org.testcontainers:mongodb" )
32
- optional(" org.testcontainers:neo4j" )
33
- optional(" org.testcontainers:oracle-xe" )
34
- optional(" org.testcontainers:oracle-free" )
35
- optional(" org.testcontainers:postgresql" )
36
- optional(" org.testcontainers:pulsar" )
37
- optional(" org.testcontainers:rabbitmq" )
38
- optional(" org.testcontainers:redpanda" )
39
23
40
24
implementation(" jakarta.inject:jakarta.inject-api" )
41
25
implementation(" org.apache.maven.resolver:maven-resolver-connector-basic" )
Original file line number Diff line number Diff line change @@ -19,8 +19,7 @@ dependencies {
19
19
app project(path : " :spring-boot-project:spring-boot-parent" , configuration : " mavenRepository" )
20
20
app project(path : " :spring-boot-project:spring-boot-tools:spring-boot-gradle-plugin" , configuration : " mavenRepository" )
21
21
22
- dockerTestImplementation(enforcedPlatform(project(" :spring-boot-project:spring-boot-parent" )))
23
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
22
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker" ))
24
23
dockerTestImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
25
24
dockerTestImplementation(" org.testcontainers:testcontainers" )
26
25
}
Original file line number Diff line number Diff line change @@ -15,8 +15,7 @@ dependencies {
15
15
app project(path : " :spring-boot-project:spring-boot-tools:spring-boot-gradle-plugin" , configuration : " mavenRepository" )
16
16
app project(path : " :spring-boot-project:spring-boot-starters:spring-boot-starter-web" , configuration : " mavenRepository" )
17
17
18
- dockerTestImplementation(enforcedPlatform(project(" :spring-boot-project:spring-boot-parent" )))
19
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
18
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker" ))
20
19
dockerTestImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
21
20
dockerTestImplementation(" org.testcontainers:junit-jupiter" )
22
21
dockerTestImplementation(" org.testcontainers:testcontainers" )
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ dependencies {
21
21
app project(path : " :spring-boot-project:spring-boot-starters:spring-boot-starter" , configuration : " mavenRepository" )
22
22
app(" org.bouncycastle:bcprov-jdk18on:1.78.1" )
23
23
24
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
24
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker " ))
25
25
dockerTestImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
26
26
dockerTestImplementation(" org.testcontainers:junit-jupiter" )
27
27
dockerTestImplementation(" org.testcontainers:testcontainers" )
Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ plugins {
7
7
description = " Spring Boot Actuator ActiveMQ smoke test"
8
8
9
9
dependencies {
10
- dockerTestImplementation(" org.awaitility:awaitility" )
11
- dockerTestImplementation(" org.testcontainers:junit-jupiter" )
12
10
dockerTestImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
13
11
dockerTestImplementation(project(" :spring-boot-project:spring-boot-testcontainers" ))
14
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
15
-
12
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker" ))
13
+ dockerTestImplementation(" org.awaitility:awaitility" )
14
+ dockerTestImplementation(" org.testcontainers:junit-jupiter" )
15
+
16
16
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-activemq" ))
17
17
}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ description = "Spring Boot AMQP smoke test"
9
9
dependencies {
10
10
dockerTestImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
11
11
dockerTestImplementation(project(" :spring-boot-project:spring-boot-testcontainers" ))
12
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
12
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker " ))
13
13
dockerTestImplementation(" org.awaitility:awaitility" )
14
14
dockerTestImplementation(" org.testcontainers:junit-jupiter" )
15
15
dockerTestImplementation(" org.testcontainers:rabbitmq" )
Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ dependencies {
27
27
28
28
couchbase(enforcedPlatform(project(" :spring-boot-project:spring-boot-dependencies" )))
29
29
couchbase(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-data-couchbase" ))
30
-
30
+
31
31
dockerTestImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis" ))
32
32
dockerTestImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
33
33
dockerTestImplementation(project(" :spring-boot-project:spring-boot-testcontainers" ))
34
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
34
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker " ))
35
35
dockerTestImplementation(" org.testcontainers:junit-jupiter" )
36
-
36
+
37
37
ehcache(enforcedPlatform(project(" :spring-boot-project:spring-boot-dependencies" )))
38
38
ehcache(" javax.cache:cache-api" )
39
39
ehcache(" org.ehcache:ehcache::jakarta" )
Original file line number Diff line number Diff line change @@ -9,15 +9,15 @@ description = "Spring Boot Data Cassandra smoke test"
9
9
dependencies {
10
10
dockerTestImplementation(project(" :spring-boot-project:spring-boot-test" ))
11
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" ))
12
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker " ))
13
13
dockerTestImplementation(project(" :spring-boot-project:spring-boot-testcontainers" ))
14
14
dockerTestImplementation(" org.junit.jupiter:junit-jupiter" )
15
15
dockerTestImplementation(" org.junit.platform:junit-platform-engine" )
16
16
dockerTestImplementation(" org.junit.platform:junit-platform-launcher" )
17
+ dockerTestImplementation(" org.testcontainers:cassandra" )
17
18
dockerTestImplementation(" org.testcontainers:junit-jupiter" )
18
19
dockerTestImplementation(" org.testcontainers:testcontainers" )
19
- dockerTestImplementation(" org.testcontainers:cassandra" )
20
-
20
+
21
21
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-data-cassandra" ))
22
22
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-data-cassandra-reactive" ))
23
23
}
Original file line number Diff line number Diff line change @@ -9,18 +9,18 @@ description = "Spring Boot Data Couchbase smoke test"
9
9
dependencies {
10
10
dockerTestImplementation(project(" :spring-boot-project:spring-boot-test" ))
11
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" ))
12
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker " ))
13
13
dockerTestImplementation(project(" :spring-boot-project:spring-boot-testcontainers" ))
14
14
dockerTestImplementation(" io.projectreactor:reactor-core" )
15
15
dockerTestImplementation(" io.projectreactor:reactor-test" )
16
16
dockerTestImplementation(" org.apache.httpcomponents.client5:httpclient5" )
17
17
dockerTestImplementation(" org.junit.jupiter:junit-jupiter" )
18
18
dockerTestImplementation(" org.junit.platform:junit-platform-engine" )
19
19
dockerTestImplementation(" org.junit.platform:junit-platform-launcher" )
20
+ dockerTestImplementation(" org.testcontainers:couchbase" )
20
21
dockerTestImplementation(" org.testcontainers:junit-jupiter" )
21
22
dockerTestImplementation(" org.testcontainers:testcontainers" )
22
- dockerTestImplementation(" org.testcontainers:couchbase" )
23
-
23
+
24
24
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-data-couchbase" ))
25
25
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-data-couchbase-reactive" ))
26
26
}
Original file line number Diff line number Diff line change @@ -7,19 +7,19 @@ plugins {
7
7
description = " Spring Boot Data MongoDB smoke test"
8
8
9
9
dependencies {
10
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-test" ))
11
10
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" ))
11
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-test" ))
12
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker" ))
13
13
dockerTestImplementation(project(" :spring-boot-project:spring-boot-testcontainers" ))
14
14
dockerTestImplementation(" io.projectreactor:reactor-test" )
15
15
dockerTestImplementation(" org.junit.jupiter:junit-jupiter" )
16
16
dockerTestImplementation(" org.junit.platform:junit-platform-engine" )
17
17
dockerTestImplementation(" org.junit.platform:junit-platform-launcher" )
18
18
dockerTestImplementation(" org.testcontainers:junit-jupiter" )
19
- dockerTestImplementation(" org.testcontainers:testcontainers" )
20
19
dockerTestImplementation(" org.testcontainers:mongodb" )
20
+ dockerTestImplementation(" org.testcontainers:testcontainers" )
21
21
22
22
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-data-mongodb" ))
23
23
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-data-mongodb-reactive" ))
24
- implementation(" io.projectreactor:reactor-core" )
24
+ implementation(" io.projectreactor:reactor-core" )
25
25
}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ description = "Spring Boot Data R2DBC with Flyway smoke test"
9
9
dependencies {
10
10
dockerTestImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
11
11
dockerTestImplementation(project(" :spring-boot-project:spring-boot-testcontainers" ))
12
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
12
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker " ))
13
13
dockerTestImplementation(" io.projectreactor:reactor-test" )
14
14
dockerTestImplementation(" org.testcontainers:junit-jupiter" )
15
15
dockerTestImplementation(" org.testcontainers:postgresql" )
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ description = "Spring Boot Data R2DBC with Liquibase smoke test"
9
9
dependencies {
10
10
dockerTestImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
11
11
dockerTestImplementation(project(" :spring-boot-project:spring-boot-testcontainers" ))
12
- dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
12
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker " ))
13
13
dockerTestImplementation(" io.projectreactor:reactor-test" )
14
14
dockerTestImplementation(" org.testcontainers:junit-jupiter" )
15
15
dockerTestImplementation(" org.testcontainers:postgresql" )
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ description = "Spring Boot Data Redis smoke test"
9
9
dependencies {
10
10
dockerTestImplementation(project(" :spring-boot-project:spring-boot-test" ))
11
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
12
dockerTestImplementation(project(" :spring-boot-project:spring-boot-testcontainers" ))
13
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker" ))
14
14
dockerTestImplementation(" io.projectreactor:reactor-core" )
15
15
dockerTestImplementation(" io.projectreactor:reactor-test" )
16
16
dockerTestImplementation(" org.junit.jupiter:junit-jupiter" )
You can’t perform that action at this time.
0 commit comments