Files
spring-boot-data-geode/spring-geode-cloud/spring-geode-cloud.gradle
2021-01-24 21:47:25 -08:00

27 lines
752 B
Groovy

apply plugin: 'io.spring.convention.spring-module'
apply from: MAVEN_POM_EDITOR_GRADLE
description = "Spring Cloud for Apache Geode"
repositories {
maven { url "https://repo.spring.io/release" }
}
dependencies {
compile project(":spring-geode-autoconfigure")
implementation "org.springframework.cloud:spring-cloud-bindings:${springCloudBindingsVersion}"
compileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"
testCompile "junit:junit"
testCompile "org.assertj:assertj-core"
testCompile "org.mockito:mockito-core"
testCompile "org.projectlombok:lombok"
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile "org.springframework.data:spring-data-geode-test"
testCompile "edu.umd.cs.mtc:multithreadedtc"
}