From 0204f7e7f45ccf8432d1cadde2afd9069ef41bcb Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 2 Oct 2018 17:17:11 -0700 Subject: [PATCH] Add Spring Boot Actuator Starter module for Pivotal GemFire. --- spring-gemfire-starter-actuator/build.gradle | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 spring-gemfire-starter-actuator/build.gradle diff --git a/spring-gemfire-starter-actuator/build.gradle b/spring-gemfire-starter-actuator/build.gradle new file mode 100644 index 00000000..25d89eb1 --- /dev/null +++ b/spring-gemfire-starter-actuator/build.gradle @@ -0,0 +1,13 @@ +apply plugin: 'io.spring.convention.spring-module' + +description = "Spring Boot Actuator Starter for Pivotal GemFire" + +dependencies { + + compile project(":spring-gemfire-starter") + + compile(project(":spring-geode-actuator-autoconfigure")) { + exclude group: "org.springframework.data", module: "spring-data-geode" + } + +}