Add Security Sample Guide and Code.

Resolves gh-81.
This commit is contained in:
Patrick Johnson
2020-04-21 16:43:35 -07:00
committed by John Blum
parent c2f1ae3e92
commit 16abdea031
13 changed files with 605 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
plugins {
id "io.freefair.lombok" version "5.0.0-rc2"
}
apply plugin: 'io.spring.convention.spring-sample-boot'
description = "Spring Geode Sample demonstrating Apache Geode security."
dependencies {
compile project(":spring-geode-starter")
compile project(":spring-geode-starter-test")
compile "org.springframework.boot:spring-boot-starter-web"
compile "org.assertj:assertj-core"
compile "org.projectlombok:lombok"
}
bootJar {
mainClassName = 'example.app.security.client.BootGeodeSecurityClientApplication'
}