2025-02-11 17:23:21 +08:00
|
|
|
plugins {
|
|
|
|
id "java"
|
|
|
|
id "org.springframework.boot.conventions"
|
|
|
|
id "org.springframework.boot.docker-test"
|
|
|
|
}
|
|
|
|
|
2025-03-12 15:59:09 +08:00
|
|
|
description = "Spring Boot Data Elasticsearch smoke test"
|
2025-02-11 17:23:21 +08:00
|
|
|
|
|
|
|
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("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:elasticsearch")
|
|
|
|
dockerTestImplementation("org.testcontainers:testcontainers")
|
|
|
|
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-elasticsearch"))
|
|
|
|
}
|