Create base Spring Geode Sample Example application on Async Inline Caching.

This commit is contained in:
John Blum
2020-12-01 16:58:30 -08:00
parent be01322025
commit ad77707d6f
15 changed files with 1038 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
plugins {
id "io.freefair.lombok" version "5.3.0"
}
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 Asynchronous 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 "org.hsqldb:hsqldb"
testCompile project(":spring-geode-starter-test")
testCompile "org.awaitility:awaitility:$awaitilityVersion"
testCompile "org.springframework.boot:spring-boot-starter-test"
}
bootJar {
mainClassName = 'example.app.caching.inline.BootGeodeAsyncInlineCachingClientApplication'
}
bootRun {
main = 'example.app.caching.inline.BootGeodeAsyncInlineClientCachingApplication'
}