15 lines
460 B
Groovy
15 lines
460 B
Groovy
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"
|
|
|
|
dependencies {
|
|
|
|
compile "ch.qos.logback:logback-classic"
|
|
compile "org.apache.logging.log4j:log4j-to-slf4j"
|
|
compile "org.springframework.boot:spring-boot-starter-logging"
|
|
|
|
testCompile project(":spring-geode-starter-test")
|
|
|
|
}
|