Add new 'quick-start' module to the Spring Geode Samples.

The new 'quick-start' Spring Geode Sample/module backs the 'Get Started' example Spring Boot, Apache Geode application referenced in the README.
This commit is contained in:
John Blum
2021-01-26 21:58:36 -08:00
parent 5f8d9b19b2
commit 6c02b0c04e
4 changed files with 176 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
plugins {
id "io.freefair.lombok" version "5.3.0"
}
apply plugin: 'io.spring.convention.spring-sample-boot'
description = "Quick Start for Spring Boot for Apache Geode"
dependencies {
compile project(":spring-geode-starter")
compile "org.assertj:assertj-core"
compile "org.projectlombok:lombok"
//runtime project(":spring-geode-starter-logging")
testCompile project(":spring-geode-starter-test")
testCompile "org.springframework.boot:spring-boot-starter-test"
}