Files
spring-test-data-geode/build.gradle
John Blum d3dc626277 Reorganize project as a multi-module project with modules for both Spring Data for Apache Geode and Pivotal GemFire.
Create Maven build files for modules.

Create Gradle build files for modules.
2018-05-17 21:07:54 -07:00

24 lines
686 B
Groovy

buildscript {
dependencies {
classpath 'io.spring.gradle:spring-build-conventions:0.0.15.RELEASE'
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
}
repositories {
maven { url 'https://repo.spring.io/plugins-release' }
}
}
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"
ext['apache-geode.version'] = '1.6.0'