Rename spring-geode-starter-actuator/build.gradle to spring-geode-starter-actuator.gradle.
14 lines
318 B
Groovy
14 lines
318 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
description = "Spring Boot Actuator Starter for Pivotal GemFire"
|
|
|
|
dependencies {
|
|
|
|
compile project(":spring-gemfire-starter")
|
|
|
|
compile(project(":spring-geode-actuator-autoconfigure")) {
|
|
exclude group: "org.springframework.data", module: "spring-data-geode"
|
|
}
|
|
|
|
}
|