From fcadfb17f24b8abf2d6ab5bf8eb42b643ac984ed Mon Sep 17 00:00:00 2001 From: John Blum Date: Wed, 6 Jul 2022 14:17:33 -0700 Subject: [PATCH] Declare JUL to SLF4J as a API dependency in Spring Geode Starter Logging. The intent is to duplicate the spring-boot-starter-logging module even though the spring-boot-starter-logging module is a declared dependency. However, if the spring-boot-starter-logging module definitions changes then Spring Boot for Apache Geode logging is covered. Resolves #117. --- .../spring-geode-starter-logging.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring-geode-project/spring-geode-starters/spring-geode-starter-logging/spring-geode-starter-logging.gradle b/spring-geode-project/spring-geode-starters/spring-geode-starter-logging/spring-geode-starter-logging.gradle index 73c84019..d67a3ea0 100644 --- a/spring-geode-project/spring-geode-starters/spring-geode-starter-logging/spring-geode-starter-logging.gradle +++ b/spring-geode-project/spring-geode-starters/spring-geode-starter-logging/spring-geode-starter-logging.gradle @@ -1,10 +1,11 @@ apply plugin: 'io.spring.convention.spring-module' -description = "Spring Boot Logging Starter for Apache Geode with Logback as the default logging provider and adaptation of Log4j to SLF4J" +description = "Spring Boot Logging Starter for Apache Geode with Logback as the default logging provider and adaptation of JUL and Log4j to SLF4J" dependencies { api "ch.qos.logback:logback-classic" + api "org.slf4j:jul-to-slf4j" api "org.apache.logging.log4j:log4j-to-slf4j" api "org.springframework.boot:spring-boot-starter-logging"