diff --git a/spring-cloudcache-starter-actuator/spring-cloudcache-starter-actuator.gradle b/spring-cloudcache-starter-actuator/spring-cloudcache-starter-actuator.gradle new file mode 100644 index 00000000..5352499f --- /dev/null +++ b/spring-cloudcache-starter-actuator/spring-cloudcache-starter-actuator.gradle @@ -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") + +} diff --git a/spring-cloudcache-starter-session/spring-cloudcache-starter-session.gradle b/spring-cloudcache-starter-session/spring-cloudcache-starter-session.gradle new file mode 100644 index 00000000..18ac5451 --- /dev/null +++ b/spring-cloudcache-starter-session/spring-cloudcache-starter-session.gradle @@ -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')) + +} diff --git a/spring-cloudcache-starter-test/spring-cloudcache-starter-test.gradle b/spring-cloudcache-starter-test/spring-cloudcache-starter-test.gradle new file mode 100644 index 00000000..814ce926 --- /dev/null +++ b/spring-cloudcache-starter-test/spring-cloudcache-starter-test.gradle @@ -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"); + +} diff --git a/spring-cloudcache-starter/spring-cloudcache-starter.gradle b/spring-cloudcache-starter/spring-cloudcache-starter.gradle new file mode 100644 index 00000000..38a8f4ed --- /dev/null +++ b/spring-cloudcache-starter/spring-cloudcache-starter.gradle @@ -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") + +}