Convert Spring Boot Data Geode/GemFire project into a Gradle project.

This commit is contained in:
John Blum
2018-01-24 16:10:53 -08:00
parent 27adcb723d
commit acabf3fccb
11 changed files with 400 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
apply plugin: 'io.spring.convention.spring-module'
apply from: IDE_GRADLE
description = "Spring Boot for Pivotal GemFire"
dependencies {
compile(project(':spring-boot-data-geode')) {
exclude group: "org.springframework.data", module: "spring-data-geode"
}
compile "org.springframework.data:spring-data-gemfire"
}