2023-05-03 02:39:01 +08:00
|
|
|
plugins {
|
|
|
|
id "java"
|
2024-06-26 17:49:03 +08:00
|
|
|
id "org.springframework.boot.docker-test"
|
2023-05-03 02:39:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
description = "Spring Boot Data Redis smoke test"
|
|
|
|
|
|
|
|
dependencies {
|
2024-06-26 17:49:03 +08:00
|
|
|
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"))
|
2024-06-26 18:10:16 +08:00
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
|
2024-08-22 04:02:38 +08:00
|
|
|
dockerTestImplementation("com.redis:testcontainers-redis")
|
2024-06-26 17:49:03 +08:00
|
|
|
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")
|
2023-05-03 02:39:01 +08:00
|
|
|
|
2024-06-26 17:49:03 +08:00
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis"))
|
2023-05-03 02:39:01 +08:00
|
|
|
}
|