23 lines
704 B
Groovy
23 lines
704 B
Groovy
buildscript {
|
|
dependencies {
|
|
classpath 'io.spring.gradle:spring-build-conventions:0.0.25.RELEASE'
|
|
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
|
|
}
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven { url 'https://repo.spring.io/plugins-release' }
|
|
}
|
|
}
|
|
|
|
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)
|