Files
spring-boot-data-geode/spring-gemfire-starter-test/spring-gemfire-starter-test.gradle
John Blum 8fb0c2112b Replace references to 'Pivotal GemFire' with 'VMware Tanzu GemFire'.
Fix compiler syntax errors in code snippets.

Introduce documentation variables where applicable.

Format source code.

Optimize imports.
2020-09-17 18:03:32 -07:00

18 lines
504 B
Groovy

apply plugin: 'io.spring.convention.spring-module'
apply from: MAVEN_POM_EDITOR_GRADLE
description = "Spring Boot Test Starter for VMware Tanzu 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"
}
}