From e5183d886f4747179e2f3a549d75e86e3bd47d07 Mon Sep 17 00:00:00 2001 From: John Blum Date: Wed, 6 Jul 2022 14:20:36 -0700 Subject: [PATCH] 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. --- .../spring-geode-starter-logging.gradle | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/spring-geode-starter-logging/spring-geode-starter-logging.gradle b/spring-geode-starter-logging/spring-geode-starter-logging.gradle index 758398bc..7b61189d 100644 --- a/spring-geode-starter-logging/spring-geode-starter-logging.gradle +++ b/spring-geode-starter-logging/spring-geode-starter-logging.gradle @@ -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") }