24 lines
631 B
Groovy
24 lines
631 B
Groovy
apply plugin: 'io.spring.convention.spring-sample-boot'
|
|
|
|
description = "Spring Geode Sample demonstrating Spring's Cache Abstraction using Apache Geode as the caching provider for Look-Aside Caching."
|
|
|
|
dependencies {
|
|
|
|
compile project(":spring-geode-starter")
|
|
|
|
compile "org.springframework.boot:spring-boot-starter-web"
|
|
|
|
testCompile project(":spring-geode-starter-test")
|
|
|
|
testCompile "org.springframework.boot:spring-boot-starter-test"
|
|
|
|
}
|
|
|
|
bootJar {
|
|
mainClassName = 'example.app.caching.lookaside.BootGeodeLookAsideCachingApplication'
|
|
}
|
|
|
|
bootRun {
|
|
main = 'example.app.caching.lookaside.BootGeodeLookAsideCachingApplication'
|
|
}
|