File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
spring-boot-project/spring-boot-couchbase
src/dockerTest/java/org/springframework/boot/couchbase/autoconfigure Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ plugins {
33 id " org.springframework.boot.auto-configuration"
44 id " org.springframework.boot.configuration-properties"
55 id " org.springframework.boot.deployed"
6+ id " org.springframework.boot.docker-test"
67 id " org.springframework.boot.optional-dependencies"
78}
89
@@ -12,6 +13,12 @@ dependencies {
1213 api(project(" :spring-boot-project:spring-boot" ))
1314 api(" com.couchbase.client:java-client" )
1415
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+
1522 optional(project(" :spring-boot-project:spring-boot-autoconfigure" ))
1623 optional(project(" :spring-boot-project:spring-boot-jackson" ))
1724
Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17- package org .springframework .boot .autoconfigure . couchbase ;
17+ package org .springframework .boot .couchbase . autoconfigure ;
1818
1919import java .time .Duration ;
2020
3434import org .testcontainers .junit .jupiter .Testcontainers ;
3535
3636import org .springframework .boot .autoconfigure .AutoConfigurations ;
37- import org .springframework .boot .couchbase .autoconfigure .CouchbaseAutoConfiguration ;
3837import org .springframework .boot .test .context .runner .ApplicationContextRunner ;
3938import org .springframework .boot .testsupport .container .TestImage ;
4039
You can’t perform that action at this time.
0 commit comments