26 lines
835 B
Groovy
26 lines
835 B
Groovy
buildscript {
|
|
dependencies {
|
|
classpath 'io.spring.gradle:spring-build-conventions:0.0.17.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'
|
|
|
|
//ext['spring.version'] = "$springVersion"
|
|
//ext['spring-data-releasetrain.version'] = "$springDataReleaseTrainVersion"
|
|
//ext['spring-session-bom.version'] = "$springSessionBomVersion"
|
|
|
|
group = 'org.springframework.session'
|
|
description = 'Spring Session for Apache Geode'
|
|
|
|
ext.releaseBuild = version.endsWith('RELEASE')
|
|
ext.snapshotBuild = version.endsWith('SNAPSHOT')
|
|
ext.milestoneBuild = !(releaseBuild || snapshotBuild)
|
|
|
|
ext.IDE_GRADLE = "$rootDir/gradle/ide.gradle"
|