From 0e3ac202a7d28d30534566f0820e8e74337b4dd3 Mon Sep 17 00:00:00 2001 From: John Blum Date: Fri, 7 Feb 2020 16:57:28 -0800 Subject: [PATCH] Explicitly declare Logback as the logging provider. Add the 'spring-geode-starter-test' module as a testRuntime dependency in order to write Unit and Integration Tests for this 'spring-geode-starter-logging' module. Resolves gh-73. --- .../spring-geode-starter-logging.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spring-geode-starter-logging/spring-geode-starter-logging.gradle b/spring-geode-starter-logging/spring-geode-starter-logging.gradle index 86d1851e..f6b736c9 100644 --- a/spring-geode-starter-logging/spring-geode-starter-logging.gradle +++ b/spring-geode-starter-logging/spring-geode-starter-logging.gradle @@ -5,7 +5,10 @@ description = "Spring Boot Logging Starter for Apache Geode with Logback as the dependencies { + compile "ch.qos.logback:logback-classic" compile "org.apache.logging.log4j:log4j-to-slf4j" compile "org.springframework.boot:spring-boot-starter-logging" + testRuntime project(":spring-geode-starter-test") + }