Files
spring-boot-data-geode/geode-spring-boot-starter/geode-spring-boot-starter.gradle
John Blum fdcaeaff1b Rename spring-boot-starter-data-gemfire module to gemfire-spring-boot-starter.
Rename spring-boot-starter-data-geode module to geode-spring-boot-starter.
2018-02-06 16:14:30 -08:00

31 lines
872 B
Groovy

apply plugin: 'io.spring.convention.spring-module'
apply from: IDE_GRADLE
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:$springDataGeodeVersion"
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 "edu.umd.cs.mtc:multithreadedtc"
testCompile("org.springframework.boot:spring-boot-starter-test") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging";
}
testCompile slf4jDependencies
// integrationTestRuntime "org.springframework.shell:spring-shell"
}