Add example code for Multi-Site Caching Sample.

Resolves gh-80.
This commit is contained in:
John Blum
2020-04-15 22:52:14 -07:00
parent 39d81d339a
commit 0efed96dcd
13 changed files with 779 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
plugins {
id "io.freefair.lombok" version "5.0.0-rc6"
}
apply plugin: 'io.spring.convention.spring-sample-boot'
description = "Spring Geode Sample for Multi-Site Caching."
dependencies {
compile project(":spring-geode-starter")
compile "org.assertj:assertj-core"
compile "org.projectlombok:lombok"
compile "org.springframework.boot:spring-boot-starter-web"
runtime project(":spring-geode-starter-logging")
testCompile project(":spring-geode-starter-test")
testCompile "org.springframework.boot:spring-boot-starter-test"
}
bootJar {
mainClassName = 'example.app.caching.multisite.client.BootGeodeMultiSiteCachingClientApplication'
}