Spring IO Platform 2.0 will remove the managed versions .properties file as support for it has been removed in Spring Boot 1.3. This commit moves the build onto a new version of the Spring IO Plugin that uses the Maven bom rather than the properties file.
21 lines
503 B
Groovy
21 lines
503 B
Groovy
apply from: JAVA_GRADLE
|
|
apply from: MAVEN_GRADLE
|
|
|
|
apply plugin: 'spring-io'
|
|
|
|
description = "Aggregator for Spring Session and Spring Data Redis"
|
|
|
|
dependencies {
|
|
compile project(':spring-session'),
|
|
"org.springframework.data:spring-data-redis:$springDataRedisVersion",
|
|
"redis.clients:jedis:$jedisVersion",
|
|
"org.apache.commons:commons-pool2:$commonsPoolVersion"
|
|
}
|
|
|
|
dependencyManagement {
|
|
springIoTestRuntime {
|
|
imports {
|
|
mavenBom "io.spring.platform:platform-bom:${springIoVersion}"
|
|
}
|
|
}
|
|
} |