17 lines
325 B
Groovy
17 lines
325 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
apply from: IDE_GRADLE
|
|
|
|
description = "Spring Test for Pivotal GemFire"
|
|
|
|
dependencies {
|
|
|
|
compile(project(':spring-test-data-geode')) {
|
|
exclude group: "org.springframework.data", module: "spring-data-geode"
|
|
}
|
|
|
|
compile "org.springframework.data:spring-data-gemfire"
|
|
|
|
}
|
|
|