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.
This commit is contained in:
John Blum
2019-05-03 11:17:45 -07:00
parent 71c93615d9
commit 2a805fa24d

View File

@@ -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"