Remove the exclude for 'org.apache.logging.log4j:log4j-to-slf4j'. Add an exclude for 'org.apache.logging.log4j:log4j-core'. Resolves gh-42.
33 lines
946 B
Groovy
33 lines
946 B
Groovy
plugins {
|
|
id "io.freefair.lombok" version "3.2.1"
|
|
}
|
|
|
|
apply plugin: 'io.spring.convention.spring-sample-boot'
|
|
|
|
description = "Spring Geode Sample demonstrating Spring's Cache Abstraction using Apache Geode as the caching provider with Inline Caching."
|
|
|
|
dependencies {
|
|
|
|
compile project(":spring-geode-starter")
|
|
|
|
compile "org.projectlombok:lombok"
|
|
compile "org.springframework.boot:spring-boot-starter-data-jpa"
|
|
compile "org.springframework.boot:spring-boot-starter-web"
|
|
|
|
runtime "javax.cache:cache-api"
|
|
runtime "org.hsqldb:hsqldb"
|
|
runtime "org.springframework.boot:spring-boot-starter-jetty"
|
|
runtime "org.springframework.shell:spring-shell"
|
|
|
|
testCompile "org.springframework.boot:spring-boot-starter-test"
|
|
|
|
testCompile("org.springframework.data:spring-data-geode-test") {
|
|
exclude group: "org.apache.logging.log4j", module: "log4j-core"
|
|
}
|
|
|
|
}
|
|
|
|
bootJar {
|
|
mainClassName = 'example.app.caching.inline.BootGeodeInlineCachingApplication'
|
|
}
|