Add Starter modules including test dependencies for testing Apache Geode or Pivotal GemFire applications in a Spring context.

Resolves gh-36.
This commit is contained in:
John Blum
2019-05-14 09:28:55 -07:00
parent d1264a2d43
commit b2e010d59c
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
apply plugin: 'io.spring.convention.spring-module'
description = "Spring Boot Starter Test 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-gemfire-starter'));
testCompile "org.springframework.data:spring-data-gemfire-test:$springDataGeodeTestVersion"
}

View File

@@ -0,0 +1,15 @@
apply plugin: 'io.spring.convention.spring-module'
description = "Spring Boot Starter Test 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'
}