From bda7d284ddd17c4b1ced9dd0f5a7881204e4203a Mon Sep 17 00:00:00 2001 From: John Blum Date: Thu, 10 Dec 2020 11:06:16 -0800 Subject: [PATCH] Add new 'spring-geode-cloud' module. This SBDG module will contain all features and functionality requried for cloud computing and to run Spring Boot (SBDG) applications in a cloud context/environment connected to VMware Tanzu GemFire for VMS or K8S. --- spring-geode-cloud/spring-geode-cloud.gradle | 22 ++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 spring-geode-cloud/spring-geode-cloud.gradle diff --git a/spring-geode-cloud/spring-geode-cloud.gradle b/spring-geode-cloud/spring-geode-cloud.gradle new file mode 100644 index 00000000..c4a82c06 --- /dev/null +++ b/spring-geode-cloud/spring-geode-cloud.gradle @@ -0,0 +1,22 @@ +apply plugin: 'io.spring.convention.spring-module' +apply from: MAVEN_POM_EDITOR_GRADLE + +description = "Spring Boot Cloud for Apache Geode" + +dependencies { + + compile project(":spring-geode-autoconfigure") + + implementation "org.springframework.cloud:spring-cloud-bindings:${springCloudBindingsVersion}" + + compileOnly "com.google.code.findbugs:jsr305:$findbugsVersion" + + testCompile "junit:junit" + testCompile "org.assertj:assertj-core" + testCompile "org.mockito:mockito-core" + testCompile "org.projectlombok:lombok" + testCompile "org.springframework.boot:spring-boot-starter-test" + testCompile "org.springframework.data:spring-data-geode-test" + testCompile "edu.umd.cs.mtc:multithreadedtc" + +}