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.
This commit is contained in:
John Blum
2020-01-16 18:52:03 -08:00
parent 0dbf2cdad1
commit 46157120f7

View File

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