24 lines
750 B
Groovy
24 lines
750 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
apply from: MAVEN_POM_EDITOR_GRADLE
|
|
|
|
description = "Spring Boot Actuator for Apache Geode"
|
|
|
|
dependencies {
|
|
|
|
compile project(":spring-geode")
|
|
|
|
compile "org.springframework.boot:spring-boot-starter-actuator"
|
|
|
|
provided "org.apache.geode:geode-logging:$apacheGeodeVersion"
|
|
provided "org.apache.geode:geode-serialization:$apacheGeodeVersion"
|
|
|
|
testCompile "junit:junit"
|
|
testCompile "org.assertj:assertj-core"
|
|
testCompile "org.mockito:mockito-core"
|
|
testCompile "org.projectlombok:lombok"
|
|
testCompile "org.springframework.boot:spring-boot-starter-test"
|
|
testCompile "org.springframework.data:spring-data-geode-test"
|
|
testCompile "edu.umd.cs.mtc:multithreadedtc"
|
|
|
|
}
|