Set Spring Framework version to 5.2.0.RC1. Set Spring Boot version to 2.2.0.M5. Set Spring Data Release Train version to Moore-RC2. Set Spring Data for Apache Geode & Pivotal GemFire version to 2.2.0.RC2. Set Srping Session BOM version to Corn-M3. Set Spring Session for Apache Geode & Pivotal GemFire version to 2.2.0.M3.
25 lines
778 B
Groovy
25 lines
778 B
Groovy
buildscript {
|
|
dependencies {
|
|
classpath 'io.spring.gradle:spring-build-conventions:0.0.26.RELEASE'
|
|
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
|
|
}
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven { url 'https://repo.spring.io/plugins-snapshot' }
|
|
}
|
|
}
|
|
|
|
apply plugin: 'io.spring.convention.root'
|
|
|
|
group = 'org.springframework.geode'
|
|
description = 'Spring Boot for Apache Geode & Pivotal GemFire'
|
|
|
|
//ext['spring.version'] = "$springVersion"
|
|
//ext['spring-data-releasetrain.version'] = "$springDataReleaseTrainVersion"
|
|
|
|
ext.snapshotBuild = version.endsWith('SNAPSHOT')
|
|
ext.releaseBuild = version.endsWith('RELEASE')
|
|
ext.milestoneBuild = !(releaseBuild || snapshotBuild)
|
|
|
|
ext.MAVEN_POM_EDITOR_GRADLE = "$rootDir/gradle/maven-pom-editor.gradle"
|