Files
spring-boot-data-geode/spring-geode-samples/caching/http-session/spring-geode-samples-caching-httpsession.gradle
2019-08-19 12:58:34 -07:00

34 lines
1010 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") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
// runtime project(":spring-geode-starter-session")
runtime("org.springframework.boot:spring-boot-starter-thymeleaf") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
runtime ("org.springframework.boot:spring-boot-starter-tomcat") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
testCompile("org.springframework.boot:spring-boot-starter-test") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
testCompile "org.springframework.data:spring-data-geode-test"
}
bootJar {
mainClassName = 'example.app.caching.lookaside.BootGeodeHttpSessionCachingApplication'
}