From 0c3a1101ceb5a0036dda58c5b24ba6bf118a9e4f Mon Sep 17 00:00:00 2001 From: John Blum Date: Wed, 30 May 2018 20:29:36 -0700 Subject: [PATCH] Remove Spring IO Platform support. Clean up dependencies. --- .../geode-spring-boot-autoconfigure.gradle | 10 ++-------- geode-spring-boot/geode-spring-boot.gradle | 4 +++- gradle.properties | 1 - 3 files changed, 5 insertions(+), 10 deletions(-) diff --git a/geode-spring-boot-autoconfigure/geode-spring-boot-autoconfigure.gradle b/geode-spring-boot-autoconfigure/geode-spring-boot-autoconfigure.gradle index 3994da04..0228b7fe 100644 --- a/geode-spring-boot-autoconfigure/geode-spring-boot-autoconfigure.gradle +++ b/geode-spring-boot-autoconfigure/geode-spring-boot-autoconfigure.gradle @@ -1,4 +1,6 @@ apply plugin: 'io.spring.convention.spring-module' +apply plugin: 'io.spring.dependency-management' +apply plugin: 'org.springframework.boot' apply from: IDE_GRADLE description = "Spring Boot for Apache Geode Auto-Configuration" @@ -9,14 +11,6 @@ repositories { dependencies { - compile "org.springframework:spring-context-support" - compile "org.springframework:spring-jcl" - compile "org.springframework.data:spring-data-geode:$springDataGeodeVersion" - - compile("org.springframework.boot:spring-boot-starter") { - exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"; - } - compile project(":geode-spring-boot") testCompile "org.assertj:assertj-core" diff --git a/geode-spring-boot/geode-spring-boot.gradle b/geode-spring-boot/geode-spring-boot.gradle index 9224c081..66f2793f 100644 --- a/geode-spring-boot/geode-spring-boot.gradle +++ b/geode-spring-boot/geode-spring-boot.gradle @@ -1,4 +1,6 @@ apply plugin: 'io.spring.convention.spring-module' +apply plugin: 'io.spring.dependency-management' +apply plugin: 'org.springframework.boot' apply from: IDE_GRADLE description = "Spring Boot for Apache Geode" @@ -11,7 +13,7 @@ dependencies { compile "org.springframework:spring-context-support" compile "org.springframework:spring-jcl" - compile "org.springframework.data:spring-data-geode:$springDataGeodeVersion" + compile "org.springframework.data:spring-data-geode" compile("org.springframework.boot:spring-boot-starter") { exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"; diff --git a/gradle.properties b/gradle.properties index 886ef440..af7d0e0e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -15,7 +15,6 @@ springBootVersion=2.0.2.RELEASE springDataGemFireVersion=2.0.7.RELEASE springDataGeodeVersion=2.0.7.RELEASE springDataReleaseTrainVersion=Kay-SR7 -springIoVersion=Cairo-RELEASE springShellVersion=1.2.0.RELEASE springTestDataGeode=0.0.1.BUILD-SNAPSHOT version=1.0.0.BUILD-SNAPSHOT