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