Files
spring-boot-data-geode/spring-geode-starter-test/spring-geode-starter-test.gradle
John Blum 8506702871 Fix incorrect scope on the 'org.springframework.data:spring-data-geode-test' dependency in the 'spring-geode-starter-test' module.
Fix incorrect scope on the 'org.springframework.data:spring-data-gemfire-test' dependency in the 'spring-gemfire-starter-test' module.

Resolves gh-50.
2019-08-23 01:23:36 -07:00

17 lines
406 B
Groovy

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