Files
spring-boot-data-geode/spring-geode-starter-logging/spring-geode-starter-logging.gradle
John Blum 64677454b2 Declare 'org.codehaus.janino:janino' as an implementation dependency in Spring Geode Starter Logging.
This enables the SLF4J Logback configuration files to include conditional logic, such as if-then-else statements.

Resolves #117.
2022-07-07 11:57:42 -07:00

16 lines
496 B
Groovy

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 JUL and Log4j to SLF4J"
dependencies {
compile "ch.qos.logback:logback-classic"
compile "org.apache.logging.log4j:log4j-to-slf4j"
compile "org.springframework.boot:spring-boot-starter-logging"
implementation "org.codehaus.janino:janino"
testImplementation project(":spring-geode-starter-test")
}