You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.2 KiB
24 lines
1.2 KiB
plugins { |
|
id "java" |
|
id "org.springframework.boot.docker-test" |
|
} |
|
|
|
description = "Spring Boot Data MongoDB smoke test" |
|
|
|
dependencies { |
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")) |
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-test")) |
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker")) |
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-testcontainers")) |
|
dockerTestImplementation("io.projectreactor:reactor-test") |
|
dockerTestImplementation("org.junit.jupiter:junit-jupiter") |
|
dockerTestImplementation("org.junit.platform:junit-platform-engine") |
|
dockerTestImplementation("org.junit.platform:junit-platform-launcher") |
|
dockerTestImplementation("org.testcontainers:junit-jupiter") |
|
dockerTestImplementation("org.testcontainers:mongodb") |
|
dockerTestImplementation("org.testcontainers:testcontainers") |
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-mongodb")) |
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-mongodb-reactive")) |
|
implementation("io.projectreactor:reactor-core") |
|
} |