23 lines
540 B
Groovy
23 lines
540 B
Groovy
plugins {
|
|
id "io.freefair.lombok" version "5.3.0"
|
|
}
|
|
|
|
apply plugin: 'io.spring.convention.spring-sample-boot'
|
|
|
|
description = "Spring Geode Sample demonstrating Apache Geode security configured with Spring."
|
|
|
|
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 {
|
|
mainClass = 'example.app.security.client.BootGeodeSecurityClientApplication'
|
|
}
|