Files
spring-boot-data-geode/spring-geode-samples/boot/security/spring-geode-samples-boot-security.gradle
Patrick Johnson 16abdea031 Add Security Sample Guide and Code.
Resolves gh-81.
2020-08-07 15:04:43 -07:00

23 lines
525 B
Groovy

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'
}