Files
spring-boot-data-geode/spring-geode-samples/boot/actuator/spring-geode-samples-boot-actuator.gradle

25 lines
615 B
Groovy

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(project(":spring-geode-starter-test")) {
exclude group: "javax.servlet", module: "javax.servlet-api"
exclude group: "org.apache.logging.log4j", module: "log4j-core"
}
compile "org.springframework.boot:spring-boot-starter-web"
}
bootJar {
mainClassName = 'example.app.temp.geode.client.BootGeodeClientApplication'
}