diff --git a/spring-geode/spring-geode.gradle b/spring-geode/spring-geode.gradle index 8e678127..3d2650ec 100644 --- a/spring-geode/spring-geode.gradle +++ b/spring-geode/spring-geode.gradle @@ -23,6 +23,16 @@ dependencies { exclude group: "org.skyscreamer", module: "jsonassert" } + testCompile("org.springframework.boot:spring-boot-starter-data-jpa") { + exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j" + } + + testCompile("org.springframework.boot:spring-boot-starter-data-cassandra") { + exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j" + } + testCompile "org.springframework.data:spring-data-geode-test" + testRuntime "org.hsqldb:hsqldb" + }