From 46157120f765d8fd1ed43335929db883f3b34f83 Mon Sep 17 00:00:00 2001 From: John Blum Date: Thu, 16 Jan 2020 18:52:03 -0800 Subject: [PATCH] Add 'provided' (compile-time) dependencies on org.apache.geode:geode-log4j and org.apache.geode:geode-serialization. Note, these dependency declarations are unfortunately necessary due to SBDG's use of Apache Geode internal APIs. I have filed an Issue ticket (https://github.com/spring-projects/spring-boot-data-geode/issues/70) with SBDG to remove all uses of internal Apache Geode APIs. --- spring-geode-actuator/spring-geode-actuator.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spring-geode-actuator/spring-geode-actuator.gradle b/spring-geode-actuator/spring-geode-actuator.gradle index ae580795..107f1101 100644 --- a/spring-geode-actuator/spring-geode-actuator.gradle +++ b/spring-geode-actuator/spring-geode-actuator.gradle @@ -9,6 +9,9 @@ dependencies { compile "org.springframework.boot:spring-boot-starter-actuator" + provided "org.apache.geode:geode-log4j:$apacheGeodeVersion" + provided "org.apache.geode:geode-serialization:$apacheGeodeVersion" + testCompile "junit:junit" testCompile "org.assertj:assertj-core" testCompile "org.mockito:mockito-core"