Files
spring-test-data-geode/build.gradle
2018-06-21 17:07:24 -07:00

22 lines
707 B
Groovy

buildscript {
dependencies {
classpath 'io.spring.gradle:spring-build-conventions:0.0.16.RELEASE'
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
}
repositories {
maven { url 'https://repo.spring.io/plugins-release' }
maven { url 'https://repo.spring.io/plugins-snapshot' }
}
}
apply plugin: 'io.spring.convention.root'
group = 'org.springframework.data'
description = 'Spring Test Framework for Apache Geode and Pivotal GemFire using Spring Data.'
ext.releaseBuild = version.endsWith('RELEASE')
ext.snapshotBuild = version.endsWith('SNAPSHOT')
ext.milestoneBuild = !(releaseBuild || snapshotBuild)
ext.IDE_GRADLE = "$rootDir/gradle/ide.gradle"