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.
This commit is contained in:
John Blum
2022-07-06 14:17:33 -07:00
parent 043d1aab26
commit fcadfb17f2

View File

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