Files
spring-boot-data-geode/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle

37 lines
1.2 KiB
Groovy

apply plugin: 'io.spring.convention.spring-module'
description = "Spring Boot for Apache Geode Auto-Configuration"
dependencies {
compile project(":spring-geode")
optional "org.springframework.boot:spring-boot-configuration-processor"
optional "org.springframework.session:spring-session-data-geode"
provided "javax.servlet:javax.servlet-api"
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"
testRuntime "javax.cache:cache-api"
testRuntime("org.springframework.boot:spring-boot-starter-web") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
}
// Runtime Test dependency on Spring Cloud Services (SCS) to verify workaround to SCS problem!
// testRuntime("io.pivotal.spring.cloud:spring-cloud-services-starter-service-registry:2.0.3.RELEASE") {
// exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
// }
}