29 lines
776 B
Groovy
29 lines
776 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"
|
|
|
|
testCompile project(":spring-geode-starter-session")
|
|
testCompile project(":spring-geode-starter-test")
|
|
|
|
testCompile "org.springframework.boot:spring-boot-starter-test"
|
|
|
|
}
|
|
|
|
bootJar {
|
|
mainClass = 'example.app.caching.session.http.BootGeodeHttpSessionCachingApplication'
|
|
}
|
|
|
|
bootRun {
|
|
main = 'example.app.caching.session.http.BootGeodeHttpSessionCachingApplication'
|
|
}
|