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") }