Files
spring-session/spring-session-data-redis/spring-session-data-redis.gradle
Eleftheria Stein 182d24219c Migrate to Jakarta EE 9
Closes gh-1949
2021-11-11 18:21:26 +01:00

27 lines
970 B
Groovy

apply plugin: 'io.spring.convention.spring-module'
description = "Spring Session Redis implementation"
dependencies {
api project(':spring-session-core')
api ("org.springframework.data:spring-data-redis") {
exclude group: "org.slf4j", module: 'jcl-over-slf4j'
}
optional "io.projectreactor:reactor-core"
optional "org.springframework:spring-web"
testImplementation "org.assertj:assertj-core"
testImplementation "org.mockito:mockito-core"
testImplementation "org.springframework:spring-test"
testImplementation "io.projectreactor:reactor-test"
testImplementation "jakarta.servlet:jakarta.servlet-api"
testImplementation "org.springframework:spring-web"
testImplementation "org.springframework.security:spring-security-core"
testImplementation "org.junit.jupiter:junit-jupiter-api"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
integrationTestCompile "io.lettuce:lettuce-core"
integrationTestCompile "org.testcontainers:testcontainers"
}