26 lines
774 B
Groovy
26 lines
774 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
description = "Spring Boot for Apache Geode Actuator"
|
|
|
|
dependencies {
|
|
|
|
compile project(":spring-geode")
|
|
|
|
compile ("org.springframework.boot:spring-boot-starter-actuator") {
|
|
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
|
|
}
|
|
|
|
testCompile "org.assertj:assertj-core"
|
|
testCompile "junit:junit"
|
|
testCompile "org.mockito:mockito-core"
|
|
testCompile "org.projectlombok:lombok"
|
|
testCompile "edu.umd.cs.mtc:multithreadedtc"
|
|
|
|
testCompile("org.springframework.boot:spring-boot-starter-test") {
|
|
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
|
|
}
|
|
|
|
testCompile "org.springframework.data:spring-data-geode-test"
|
|
|
|
}
|