You cannot 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.0 KiB
Groovy
24 lines
1.0 KiB
Groovy
2 years ago
|
plugins {
|
||
|
id "java"
|
||
|
id "org.springframework.boot.conventions"
|
||
|
}
|
||
|
|
||
|
description = "Spring Boot Data Redis smoke test"
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis"))
|
||
|
|
||
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
||
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
||
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
||
|
testImplementation(project(":spring-boot-project:spring-boot-testcontainers"))
|
||
|
testImplementation("io.projectreactor:reactor-core")
|
||
|
testImplementation("io.projectreactor:reactor-test")
|
||
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
||
|
testImplementation("org.junit.platform:junit-platform-engine")
|
||
|
testImplementation("org.junit.platform:junit-platform-launcher")
|
||
|
testImplementation("org.testcontainers:junit-jupiter")
|
||
|
testImplementation("org.testcontainers:testcontainers")
|
||
|
testImplementation("redis.clients:jedis")
|
||
|
}
|