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.
This commit is contained in:
John Blum
2022-07-06 14:20:36 -07:00
parent 7703510bf4
commit e5183d886f

View File

@@ -1,7 +1,6 @@
apply plugin: 'io.spring.convention.spring-module'
apply from: MAVEN_POM_EDITOR_GRADLE
description = "Spring Boot Logging Starter for Apache Geode with Logback as the 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 {
@@ -9,6 +8,8 @@ dependencies {
compile "org.apache.logging.log4j:log4j-to-slf4j"
compile "org.springframework.boot:spring-boot-starter-logging"
testCompile project(":spring-geode-starter-test")
implementation "org.codehaus.janino:janino"
testImplementation project(":spring-geode-starter-test")
}