Files
spring-boot-data-geode/build.gradle
John Blum 7073064886 Prepare next development iteration.
Set version to 1.1.1.BUILD-SNAPSHOT.

Set Spring Framework version to 5.1.10.BUILD-SNAPSHOT.

Set Spring Boot version to 2.1.8.BUILD-SNAPSHOT.

Set Spring Data for Apache Geode & Pivotal GemFire version to 2.1.11.BUILD-SNAPSHOT.

Set Spring Data Relese Train version to Lovelace-BUILD-SNAPSHOT.

Set Spring Session BOM version to Bean-BUILD-SNAPSHOT.

Set Spring Session for Apache Geode & Pivotal GemFire version to 2.1.6.BUILD-SNAPSHOT.
2019-08-21 11:11:01 -07:00

25 lines
774 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"