Upgrade to Spring Data GemFire 2.0.0.RC2. Upgrade to Spring Data Geode 2.0.0.RC2. Upgrade to Spring Data Release Train Kay RC2. Upgrade to Spring Security 5.0.0.M3. Upgrade to Spring Session 2.0.0.M3.
22 lines
642 B
Groovy
22 lines
642 B
Groovy
buildscript {
|
|
dependencies {
|
|
classpath 'io.spring.gradle:spring-build-conventions:0.0.3.RELEASE'
|
|
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
|
|
}
|
|
repositories {
|
|
maven { url 'https://repo.spring.io/libs-release' }
|
|
maven { url 'https://repo.spring.io/plugins-snapshot' }
|
|
}
|
|
}
|
|
|
|
apply plugin: 'io.spring.convention.root'
|
|
|
|
group = 'org.springframework.session'
|
|
description = 'Spring Session Data Geode'
|
|
|
|
ext.releaseBuild = version.endsWith('RELEASE')
|
|
ext.snapshotBuild = version.endsWith('SNAPSHOT')
|
|
ext.milestoneBuild = !(releaseBuild || snapshotBuild)
|
|
|
|
ext.IDE_GRADLE = "$rootDir/gradle/ide.gradle"
|