From 21150c614efebd9fd830124d5618ae765b868fc2 Mon Sep 17 00:00:00 2001 From: John Blum Date: Wed, 30 May 2018 22:02:51 -0700 Subject: [PATCH] Add gemfire-spring-boot-starter module. Resolves #gh-6. --- .../gemfire-spring-boot-starter.gradle | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/gemfire-spring-boot-starter/gemfire-spring-boot-starter.gradle b/gemfire-spring-boot-starter/gemfire-spring-boot-starter.gradle index 4f9629eb..4ae96b91 100644 --- a/gemfire-spring-boot-starter/gemfire-spring-boot-starter.gradle +++ b/gemfire-spring-boot-starter/gemfire-spring-boot-starter.gradle @@ -1,15 +1,32 @@ +import org.springframework.boot.gradle.plugin.SpringBootPlugin + apply plugin: 'io.spring.convention.spring-module' +apply plugin: 'io.spring.dependency-management' apply from: IDE_GRADLE -description = "Spring Boot for Pivotal GemFire" +description = "Spring Boot Starter for Pivotal GemFire" + +dependencyManagement { + imports { + mavenBom SpringBootPlugin.BOM_COORDINATES + } +} dependencies { + compile("org.springframework.boot:spring-boot-starter") { + exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" + } + compile(project(':geode-spring-boot')) { exclude group: "org.springframework.data", module: "spring-data-geode" } + compile(project(':geode-spring-boot-autoconfigure')) { + exclude group: "org.springframework.data", module: "spring-data-geode" + } + compile "org.springframework.data:spring-data-gemfire" }