diff --git a/spring-gemfire-starter-actuator/spring-gemfire-starter-actuator.gradle b/spring-gemfire-starter-actuator/spring-gemfire-starter-actuator.gradle deleted file mode 100644 index d56b6c75..00000000 --- a/spring-gemfire-starter-actuator/spring-gemfire-starter-actuator.gradle +++ /dev/null @@ -1,14 +0,0 @@ -apply plugin: 'io.spring.convention.spring-module' -apply from: MAVEN_POM_EDITOR_GRADLE - -description = "Spring Boot Actuator Starter for Pivotal GemFire" - -dependencies { - - compile project(":spring-gemfire-starter") - - compile(project(":spring-geode-actuator-autoconfigure")) { - exclude group: "org.springframework.data", module: "spring-data-geode" - } - -} diff --git a/spring-gemfire-starter-logging/spring-gemfire-starter-logging.gradle b/spring-gemfire-starter-logging/spring-gemfire-starter-logging.gradle deleted file mode 100644 index afe6d363..00000000 --- a/spring-gemfire-starter-logging/spring-gemfire-starter-logging.gradle +++ /dev/null @@ -1,10 +0,0 @@ -apply plugin: 'io.spring.convention.spring-module' -apply from: MAVEN_POM_EDITOR_GRADLE - -description = "Spring Boot Logging Starter for Pivotal GemFire with Logback as the logging provider and adaptation of Log4j to SLF4J" - -dependencies { - - compile project(":spring-geode-starter-logging") - -} diff --git a/spring-gemfire-starter-session/spring-gemfire-starter-session.gradle b/spring-gemfire-starter-session/spring-gemfire-starter-session.gradle deleted file mode 100644 index 1e468d99..00000000 --- a/spring-gemfire-starter-session/spring-gemfire-starter-session.gradle +++ /dev/null @@ -1,14 +0,0 @@ -apply plugin: 'io.spring.convention.spring-module' -apply from: MAVEN_POM_EDITOR_GRADLE - -description = "Spring Boot Starter for Spring Session using Pivotal GemFire" - -dependencies { - - compile project(':spring-gemfire-starter') - - compile('org.springframework.session:spring-session-data-gemfire') { - exclude group: "org.apache.logging.log4j", module: "log4j-core" - } - -} diff --git a/spring-gemfire-starter-test/spring-gemfire-starter-test.gradle b/spring-gemfire-starter-test/spring-gemfire-starter-test.gradle deleted file mode 100644 index 4a0b7100..00000000 --- a/spring-gemfire-starter-test/spring-gemfire-starter-test.gradle +++ /dev/null @@ -1,17 +0,0 @@ -apply plugin: 'io.spring.convention.spring-module' -apply from: MAVEN_POM_EDITOR_GRADLE - -description = "Spring Boot Test Starter for Pivotal GemFire" - -dependencies { - - compile project(':spring-gemfire-starter') - - compile "org.springframework.boot:spring-boot-starter-test" - - compile("org.springframework.data:spring-data-gemfire-test:$springDataGeodeTestVersion") { - exclude group: "javax.servlet", module: "javax.servlet-api" - exclude group: "org.apache.logging.log4j", module: "log4j-core" - } - -} diff --git a/spring-gemfire-starter/spring-gemfire-starter.gradle b/spring-gemfire-starter/spring-gemfire-starter.gradle deleted file mode 100644 index c15ce7eb..00000000 --- a/spring-gemfire-starter/spring-gemfire-starter.gradle +++ /dev/null @@ -1,17 +0,0 @@ -apply plugin: 'io.spring.convention.spring-module' -apply from: MAVEN_POM_EDITOR_GRADLE - -description = "Spring Boot Starter for Pivotal GemFire" - -dependencies { - - compile(project(':spring-geode-starter')) { - exclude group: "org.springframework.data", module: "spring-data-geode" - } - - compile("org.springframework.data:spring-data-gemfire") { - exclude group: "javax.servlet", module: "javax.servlet-api" - exclude group: "org.apache.logging.log4j", module: "log4j-core" - } - -}