Files
spring-boot-data-geode/build.gradle
John Blum 8fb0c2112b Replace references to 'Pivotal GemFire' with 'VMware Tanzu GemFire'.
Fix compiler syntax errors in code snippets.

Introduce documentation variables where applicable.

Format source code.

Optimize imports.
2020-09-17 18:03:32 -07:00

27 lines
901 B
Groovy

buildscript {
dependencies {
classpath 'io.spring.gradle:spring-build-conventions:0.0.34.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 & VMware Tanzu GemFire'
//ext['spring.version'] = "$springVersion"
//ext['spring-framework.version'] = "$springVersion"
//ext['spring-data-releasetrain.version'] = "$springDataReleaseTrainVersion"
//ext['spring-session-bom.version'] = "$springSessionBomVersion"
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"