This commit improves dependency management with the following changes: - `spring-session-core`: move `javax.servlet-api` from `provided` to `optional` configuration due to introduction of reactive support - `spring-session-data-redis`: remove Redis driver from `compile` configuration - Boot samples: delegate Redis driver choice to `spring-boot-starter-data-redis` - polish `test` configuration dependencies
19 lines
594 B
Groovy
19 lines
594 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
description = "Spring Session Redis implementation"
|
|
|
|
dependencies {
|
|
compile project(':spring-session-core')
|
|
compile ("org.springframework.data:spring-data-redis") {
|
|
exclude group: "org.slf4j", module: 'slf4j-api'
|
|
exclude group: "org.slf4j", module: 'jcl-over-slf4j'
|
|
}
|
|
|
|
testCompile "javax.servlet:javax.servlet-api"
|
|
testCompile "org.springframework:spring-web"
|
|
testCompile "org.springframework.security:spring-security-core"
|
|
|
|
integrationTestCompile "redis.clients:jedis"
|
|
integrationTestCompile "org.apache.commons:commons-pool2"
|
|
}
|