26 lines
652 B
Groovy
26 lines
652 B
Groovy
apply from: JAVA_GRADLE
|
|
apply from: MAVEN_GRADLE
|
|
apply from: BOM_GRADLE
|
|
|
|
apply plugin: 'spring-io'
|
|
|
|
description = "Aggregator for Spring Session and Spring Data Redis"
|
|
|
|
dependencies {
|
|
compile project(':spring-session')
|
|
compile ("org.springframework.data:spring-data-redis:$springDataRedisVersion") {
|
|
exclude group: "org.slf4j", module: 'slf4j-api'
|
|
exclude group: "org.slf4j", module: 'jcl-over-slf4j'
|
|
}
|
|
compile "redis.clients:jedis:$jedisVersion",
|
|
"org.apache.commons:commons-pool2:$commonsPoolVersion"
|
|
}
|
|
|
|
dependencyManagement {
|
|
springIoTestRuntime {
|
|
imports {
|
|
mavenBom "io.spring.platform:platform-bom:${springIoVersion}"
|
|
}
|
|
}
|
|
}
|