Files
spring-boot-data-geode/spring-geode/spring-geode.gradle
John Blum 3661d58a69 Polish.
2018-09-18 22:50:14 -07:00

29 lines
857 B
Groovy

apply plugin: 'io.spring.convention.spring-module'
description = "Spring Boot for Apache Geode"
dependencies {
compile "org.springframework:spring-context-support"
compile "org.springframework:spring-jcl"
compile "org.springframework.data:spring-data-geode"
compile("org.springframework.boot:spring-boot-starter") {
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"
testCompile slf4jDependencies
}