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