25 lines
673 B
Groovy
25 lines
673 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
apply from: IDE_GRADLE
|
|
|
|
description = "Spring Boot Starter for Pivotal GemFire"
|
|
|
|
//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(':spring-geode')) {
|
|
exclude group: "org.springframework.data", module: "spring-data-geode"
|
|
}
|
|
|
|
compile(project(':spring-geode-autoconfigure')) {
|
|
exclude group: "org.springframework.data", module: "spring-data-geode"
|
|
}
|
|
|
|
compile "org.springframework.data:spring-data-gemfire"
|
|
|
|
}
|