Remove the exclude for 'org.apache.logging.log4j:log4j-to-slf4j'. Add an exclude for 'org.apache.logging.log4j:log4j-core'. Resolves gh-42.
27 lines
678 B
Groovy
27 lines
678 B
Groovy
plugins {
|
|
id "io.freefair.lombok" version "3.2.1"
|
|
}
|
|
|
|
apply plugin: 'io.spring.convention.spring-sample-boot'
|
|
|
|
description = "Spring Geode Sample demonstrating the use of Spring Boot Actuator with Apache Geode."
|
|
|
|
dependencies {
|
|
|
|
compile project(":spring-geode-starter-actuator")
|
|
|
|
compile "org.springframework.boot:spring-boot-starter-web"
|
|
|
|
compile("org.springframework.data:spring-data-geode-test") {
|
|
exclude group: "org.apache.logging.log4j", module: "log4j-core"
|
|
}
|
|
|
|
runtime "org.springframework.boot:spring-boot-starter-jetty"
|
|
runtime "org.springframework.shell:spring-shell"
|
|
|
|
}
|
|
|
|
bootJar {
|
|
mainClassName = 'example.app.temp.geode.client.BootGeodeClientApplication'
|
|
}
|