Add Spring Boot Starters for Pivotal Cloud Cache.

Resolves gh-46.
This commit is contained in:
John Blum
2019-08-21 14:30:47 -07:00
parent 2684f08c20
commit c2e311c47f
4 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
apply plugin: 'io.spring.convention.spring-module'
apply from: MAVEN_POM_EDITOR_GRADLE
description = "Spring Boot Actuator Starter for Pivotal Cloud Cache"
dependencies {
compile project(":spring-gemfire-starter-actuator")
}

View File

@@ -0,0 +1,10 @@
apply plugin: 'io.spring.convention.spring-module'
apply from: MAVEN_POM_EDITOR_GRADLE
description = "Spring Boot Starter for Spring Session using Pivotal Cloud Cache"
dependencies {
compile(project(':spring-gemfire-starter-session'))
}

View File

@@ -0,0 +1,10 @@
apply plugin: 'io.spring.convention.spring-module'
apply from: MAVEN_POM_EDITOR_GRADLE
description = "Spring Boot Test Starter for Pivotal Cloud Cache"
dependencies {
compile project(":spring-gemfire-starter-test");
}

View File

@@ -0,0 +1,10 @@
apply plugin: 'io.spring.convention.spring-module'
apply from: MAVEN_POM_EDITOR_GRADLE
description = "Spring Boot Starter for Pivotal Cloud Cache"
dependencies {
compile project(":spring-gemfire-starter")
}