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:
@@ -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"
|
||||
|
||||
}
|
||||
15
spring-geode-starter-test/spring-geode-starter-test.gradle
Normal file
15
spring-geode-starter-test/spring-geode-starter-test.gradle
Normal 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'
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user