Files
spring-boot-data-geode/spring-geode-samples/caching/http-session/spring-geode-samples-caching-httpsession.gradle
John Blum f2a88d7f0b Remove exclusion on 'org.apache.logging.log4j:log4j-to-slf4j'.
Add exclusion on 'org.apache.logging.log4j:log4j-core.'

Resolves gh-42.
2019-08-21 11:56:32 -07:00

29 lines
830 B
Groovy

apply plugin: 'io.spring.convention.spring-sample-boot'
description = "Spring Geode Sample demonstrating Spring Session with Apache Geode for HTTP Session Caching."
dependencies {
compile project(":spring-geode-starter")
compile "org.springframework.boot:spring-boot-starter-web"
// runtime project(":spring-geode-starter-session")
runtime "org.springframework.boot:spring-boot-starter-thymeleaf"
runtime "org.springframework.boot:spring-boot-starter-tomcat"
testCompile project(":spring-geode-starter-session")
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.lookaside.BootGeodeHttpSessionCachingApplication'
}