Files
spring-boot-data-geode/spring-gemfire-starter/spring-gemfire-starter.gradle
John Blum fa452b8801 Remove Spring libs-snapshot Maven Repository declarations.
Move all extension properties for dependency version overrides to build.gradle.
2018-08-22 15:07:11 -07:00

22 lines
572 B
Groovy

apply plugin: 'io.spring.convention.spring-module'
description = "Spring Boot Starter for Pivotal GemFire"
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"
}