16 lines
375 B
Groovy
16 lines
375 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
description = "Spring Boot Test Starter for Apache Geode"
|
|
|
|
dependencies {
|
|
|
|
compile("org.springframework.boot:spring-boot-starter-test") {
|
|
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
|
|
}
|
|
|
|
compile(project(':spring-geode-starter'))
|
|
|
|
testCompile 'org.springframework.data:spring-data-geode-test'
|
|
|
|
}
|