Skip to content

Commit e5183d8

Browse files
committed
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.
1 parent 7703510 commit e5183d8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
apply plugin: 'io.spring.convention.spring-module'
2-
apply from: MAVEN_POM_EDITOR_GRADLE
32

4-
description = "Spring Boot Logging Starter for Apache Geode with Logback as the logging provider and adaptation of Log4j to SLF4J"
3+
description = "Spring Boot Logging Starter for Apache Geode with Logback as the default logging provider and adaptation of JUL and Log4j to SLF4J"
54

65
dependencies {
76

87
compile "ch.qos.logback:logback-classic"
98
compile "org.apache.logging.log4j:log4j-to-slf4j"
109
compile "org.springframework.boot:spring-boot-starter-logging"
1110

12-
testCompile project(":spring-geode-starter-test")
11+
implementation "org.codehaus.janino:janino"
12+
13+
testImplementation project(":spring-geode-starter-test")
1314

1415
}

0 commit comments

Comments
 (0)