Files
spring-boot-data-geode/gemfire-spring-boot-starter/gemfire-spring-boot-starter.gradle
John Blum 0192141d27 Upgrade to Spring Data Release Train Kay-BUILD-SNAPSHOT.
Upgrade to Spring Data for Apache Geode 2.0.8.BUILD-SNAPSHOT.

Upgrade to Spring Data for Pivotal GemFire 2.0.8.BUILD-SNAPSHOT.
2018-06-12 22:20:34 -07:00

35 lines
878 B
Groovy

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 Starter for Pivotal GemFire"
dependencyManagement {
imports {
mavenBom SpringBootPlugin.BOM_COORDINATES
}
}
ext['spring-data-releasetrain.version'] = "$springDataReleaseTrainVersion"
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"
}