Extract spring-session-data-redis

Issue gh-806
This commit is contained in:
Rob Winch
2017-06-16 15:25:31 -05:00
parent f1319483ee
commit 972cf66d7e
34 changed files with 6 additions and 4 deletions

View File

@@ -10,14 +10,12 @@ dependencies {
optional "org.springframework:spring-messaging"
optional "org.springframework:spring-web"
optional "org.springframework:spring-websocket"
optional "org.springframework.data:spring-data-redis"
optional "org.springframework.security:spring-security-core"
optional "org.springframework.security:spring-security-web"
optional "com.hazelcast:hazelcast"
provided "javax.servlet:javax.servlet-api"
integrationTestCompile "redis.clients:jedis"
integrationTestCompile "org.apache.commons:commons-pool2"
integrationTestCompile "org.apache.derby:derby"
integrationTestCompile "com.h2database:h2"

View File

@@ -1,6 +1,6 @@
apply plugin: 'io.spring.convention.spring-pom'
apply plugin: 'io.spring.convention.spring-module'
description = "Aggregator for Spring Session and Spring Data Redis"
description = "Spring Session Redis implementation"
dependencies {
compile project(':spring-session-core')
@@ -10,4 +10,8 @@ dependencies {
}
compile "redis.clients:jedis"
compile "org.apache.commons:commons-pool2"
testCompile "javax.servlet:javax.servlet-api"
testCompile "org.springframework.security:spring-security-core"
testCompile "org.springframework.security:spring-security-web"
}