19 lines
430 B
Groovy
19 lines
430 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
apply from: IDE_GRADLE
|
|
|
|
description = "Spring Test Framework for Apache Geode"
|
|
|
|
repositories {
|
|
maven { url = "https://repo.spring.io/libs-snapshot" }
|
|
}
|
|
|
|
dependencies {
|
|
|
|
compile "org.springframework.data:spring-data-geode"
|
|
|
|
compile("org.springframework.boot:spring-boot-starter-test") {
|
|
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging";
|
|
}
|
|
|
|
}
|