From b2e010d59c39f993a0716ecdafdd8315912af1d7 Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 14 May 2019 09:28:55 -0700 Subject: [PATCH] Add Starter modules including test dependencies for testing Apache Geode or Pivotal GemFire applications in a Spring context. Resolves gh-36. --- .../spring-gemfire-starter-test.gradle | 15 +++++++++++++++ .../spring-geode-starter-test.gradle | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 spring-gemfire-starter-test/spring-gemfire-starter-test.gradle create mode 100644 spring-geode-starter-test/spring-geode-starter-test.gradle diff --git a/spring-gemfire-starter-test/spring-gemfire-starter-test.gradle b/spring-gemfire-starter-test/spring-gemfire-starter-test.gradle new file mode 100644 index 00000000..6a1246ba --- /dev/null +++ b/spring-gemfire-starter-test/spring-gemfire-starter-test.gradle @@ -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" + +} diff --git a/spring-geode-starter-test/spring-geode-starter-test.gradle b/spring-geode-starter-test/spring-geode-starter-test.gradle new file mode 100644 index 00000000..56080737 --- /dev/null +++ b/spring-geode-starter-test/spring-geode-starter-test.gradle @@ -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' + +}