From 2a805fa24db36f52ed6c2cdfd39659eb8fa1d3e4 Mon Sep 17 00:00:00 2001 From: John Blum Date: Fri, 3 May 2019 11:17:45 -0700 Subject: [PATCH] Add exclusion on 'org.skyscreamer:jsonassert' in the 'org.springframework.boot:spring-boot-starter-test' dependency. This transitive dependency creates a conflict with Apache Geode with the org.json.JSONObject class given Geode use but overrides (o.O) the same API. --- spring-geode/spring-geode.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-geode/spring-geode.gradle b/spring-geode/spring-geode.gradle index 2f30f9a6..8e678127 100644 --- a/spring-geode/spring-geode.gradle +++ b/spring-geode/spring-geode.gradle @@ -20,6 +20,7 @@ dependencies { testCompile("org.springframework.boot:spring-boot-starter-test") { exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j" + exclude group: "org.skyscreamer", module: "jsonassert" } testCompile "org.springframework.data:spring-data-geode-test"