Files
spring-boot-data-geode/spring-geode-samples/boot/security/spring-geode-samples-boot-security.gradle
2020-09-18 02:33:58 -07:00

23 lines
521 B
Groovy

plugins {
id "io.freefair.lombok" version "5.2.1"
}
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'
}