Move Spring Boot Actuator Sample under the spring-geode-samples.

Declare the FreeFair Lombok Gradle Plugin in spring-geode-samples-boot-actuator.gradle.
This commit is contained in:
John Blum
2019-04-28 19:08:56 -07:00
parent 12a675e045
commit 280ee00f61
15 changed files with 18 additions and 7 deletions

View File

@@ -0,0 +1,29 @@
plugins {
id "io.freefair.lombok" version "3.2.1"
}
apply plugin: 'io.spring.convention.spring-sample-boot'
description = "Spring Geode Sample demonstrating the use of Spring Boot Actuator with Apache Geode."
dependencies {
compile project(":spring-geode-starter-actuator")
compile ("org.springframework.boot:spring-boot-starter-web") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
}
compile "org.springframework.data:spring-data-geode-test"
runtime "org.springframework.shell:spring-shell"
runtime ("org.springframework.boot:spring-boot-starter-jetty") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
}
}
bootJar {
mainClassName = 'example.app.temp.geode.client.BootGeodeClientApplication'
}