14 lines
417 B
Groovy
14 lines
417 B
Groovy
apply plugin: 'io.spring.convention.spring-pom'
|
|
|
|
description = "Aggregator for Spring Session and Spring Data Redis"
|
|
|
|
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'
|
|
}
|
|
compile "redis.clients:jedis"
|
|
compile "org.apache.commons:commons-pool2"
|
|
}
|