Files
spring-boot-data-geode/spring-gemfire-starter-test/spring-gemfire-starter-test.gradle
John Blum c2cd6fd0a0 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-22 22:46:26 -07:00

18 lines
499 B
Groovy

apply plugin: 'io.spring.convention.spring-module'
apply from: MAVEN_POM_EDITOR_GRADLE
description = "Spring Boot Test Starter for Pivotal GemFire"
dependencies {
compile project(':spring-gemfire-starter')
compile "org.springframework.boot:spring-boot-starter-test"
compile("org.springframework.data:spring-data-gemfire-test:$springDataGeodeTestVersion") {
exclude group: "javax.servlet", module: "javax.servlet-api"
exclude group: "org.apache.logging.log4j", module: "log4j-core"
}
}