Skip to content

Commit 4e33f2e

Browse files
committed
fixup! Create spring-boot-couchbase module
1 parent c07135a commit 4e33f2e

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

spring-boot-project/spring-boot-couchbase/build.gradle

+7
Original file line numberDiff line numberDiff 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 numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.autoconfigure.couchbase;
17+
package org.springframework.boot.couchbase.autoconfigure;
1818

1919
import java.time.Duration;
2020

@@ -34,7 +34,6 @@
3434
import org.testcontainers.junit.jupiter.Testcontainers;
3535

3636
import org.springframework.boot.autoconfigure.AutoConfigurations;
37-
import org.springframework.boot.couchbase.autoconfigure.CouchbaseAutoConfiguration;
3837
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
3938
import org.springframework.boot.testsupport.container.TestImage;
4039

0 commit comments

Comments
 (0)