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' + +}