|
1 | 1 | plugins { |
2 | 2 | id "java" |
3 | 3 | id "org.springframework.boot.conventions" |
| 4 | + id "org.springframework.boot.docker-test" |
4 | 5 | } |
5 | 6 |
|
6 | 7 | description = "Spring Boot Data Couchbase smoke test" |
7 | 8 |
|
8 | 9 | dependencies { |
| 10 | + dockerTestImplementation(project(":spring-boot-project:spring-boot-test")) |
| 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 | + dockerTestImplementation(project(":spring-boot-project:spring-boot-testcontainers")) |
| 14 | + dockerTestImplementation("io.projectreactor:reactor-core") |
| 15 | + dockerTestImplementation("io.projectreactor:reactor-test") |
| 16 | + dockerTestImplementation("org.apache.httpcomponents.client5:httpclient5") |
| 17 | + dockerTestImplementation("org.junit.jupiter:junit-jupiter") |
| 18 | + dockerTestImplementation("org.junit.platform:junit-platform-engine") |
| 19 | + dockerTestImplementation("org.junit.platform:junit-platform-launcher") |
| 20 | + dockerTestImplementation("org.testcontainers:junit-jupiter") |
| 21 | + dockerTestImplementation("org.testcontainers:testcontainers") |
| 22 | + dockerTestImplementation("org.testcontainers:couchbase") |
| 23 | + |
9 | 24 | implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-couchbase")) |
10 | 25 | implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-couchbase-reactive")) |
11 | | - |
12 | | - testImplementation(project(":spring-boot-project:spring-boot-test")) |
13 | | - testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")) |
14 | | - testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support")) |
15 | | - testImplementation(project(":spring-boot-project:spring-boot-testcontainers")) |
16 | | - testImplementation("io.projectreactor:reactor-core") |
17 | | - testImplementation("io.projectreactor:reactor-test") |
18 | | - testImplementation("org.apache.httpcomponents.client5:httpclient5") |
19 | | - testImplementation("org.junit.jupiter:junit-jupiter") |
20 | | - testImplementation("org.junit.platform:junit-platform-engine") |
21 | | - testImplementation("org.junit.platform:junit-platform-launcher") |
22 | | - testImplementation("org.testcontainers:junit-jupiter") |
23 | | - testImplementation("org.testcontainers:testcontainers") |
24 | | - testImplementation("org.testcontainers:couchbase") |
25 | 26 | } |
0 commit comments