24 lines
1.1 KiB
Groovy
24 lines
1.1 KiB
Groovy
plugins {
|
|
id "java"
|
|
id "org.springframework.boot.docker-test"
|
|
}
|
|
|
|
description = "Spring Boot Data Redis smoke test"
|
|
|
|
dependencies {
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-testcontainers"))
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
|
|
dockerTestImplementation("io.projectreactor:reactor-core")
|
|
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:testcontainers")
|
|
dockerTestImplementation("redis.clients:jedis")
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis"))
|
|
}
|