This enables the SLF4J Logback configuration files to include conditional logic, such as if-then-else statements. Resolves #117.
16 lines
496 B
Groovy
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")
|
|
|
|
}
|