File tree 2 files changed +8
-2
lines changed
spring-boot-project/spring-boot-couchbase
src/dockerTest/java/org/springframework/boot/couchbase/autoconfigure
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ plugins {
3
3
id " org.springframework.boot.auto-configuration"
4
4
id " org.springframework.boot.configuration-properties"
5
5
id " org.springframework.boot.deployed"
6
+ id " org.springframework.boot.docker-test"
6
7
id " org.springframework.boot.optional-dependencies"
7
8
}
8
9
@@ -12,6 +13,12 @@ dependencies {
12
13
api(project(" :spring-boot-project:spring-boot" ))
13
14
api(" com.couchbase.client:java-client" )
14
15
16
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-test" ))
17
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support-docker" ))
18
+ dockerTestImplementation(" org.junit.jupiter:junit-jupiter" )
19
+ dockerTestImplementation(" org.testcontainers:couchbase" )
20
+ dockerTestImplementation(" org.testcontainers:junit-jupiter" )
21
+
15
22
optional(project(" :spring-boot-project:spring-boot-autoconfigure" ))
16
23
optional(project(" :spring-boot-project:spring-boot-jackson" ))
17
24
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package org .springframework .boot .autoconfigure . couchbase ;
17
+ package org .springframework .boot .couchbase . autoconfigure ;
18
18
19
19
import java .time .Duration ;
20
20
34
34
import org .testcontainers .junit .jupiter .Testcontainers ;
35
35
36
36
import org .springframework .boot .autoconfigure .AutoConfigurations ;
37
- import org .springframework .boot .couchbase .autoconfigure .CouchbaseAutoConfiguration ;
38
37
import org .springframework .boot .test .context .runner .ApplicationContextRunner ;
39
38
import org .springframework .boot .testsupport .container .TestImage ;
40
39
You can’t perform that action at this time.
0 commit comments