Files
spring-boot-data-geode/geode-spring-boot-autoconfigure/geode-spring-boot-autoconfigure.gradle
John Blum 0c3a1101ce Remove Spring IO Platform support.
Clean up dependencies.
2018-05-30 22:18:22 -07:00

34 lines
910 B
Groovy

apply plugin: 'io.spring.convention.spring-module'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'org.springframework.boot'
apply from: IDE_GRADLE
description = "Spring Boot for Apache Geode Auto-Configuration"
repositories {
maven { url "https://repo.spring.io/libs-snapshot" }
}
dependencies {
compile project(":geode-spring-boot")
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 slf4jDependencies
testCompile "org.springframework.data:spring-test-data-geode"
testRuntime "javax.cache:cache-api"
// integrationTestRuntime "org.springframework.shell:spring-shell"
}