From c46a9ce59ab5ff2b53ca8f124e263ad52d5aa808 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Ramos=20Cassella?= Date: Fri, 25 Jun 2021 09:37:26 +0100 Subject: [PATCH] Edit documentation on building Spring Boot, Apache Geode Manager applications to optionally include Pulse. Add org.apache.geode:geode-pulse as a dependency in the documentation for users who want to automatically start the Apache Geode Pulse (Web) application embedded within the Manager configured and bootstrappedw with Spring Boot. Resolves gh-107. Resolves gh-108. --- .../src/docs/asciidoc/_includes/clientcache-applications.adoc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spring-geode-docs/src/docs/asciidoc/_includes/clientcache-applications.adoc b/spring-geode-docs/src/docs/asciidoc/_includes/clientcache-applications.adoc index 1f609c19..0740f7b7 100644 --- a/spring-geode-docs/src/docs/asciidoc/_includes/clientcache-applications.adoc +++ b/spring-geode-docs/src/docs/asciidoc/_includes/clientcache-applications.adoc @@ -694,6 +694,7 @@ The required dependencies are: ---- runtime "org.apache.geode:geode-http-service" runtime "org.apache.geode:geode-web" +runtime "org.apache.geode:geode-pulse" runtime "org.springframework.boot:spring-boot-starter-jetty" ---- @@ -703,3 +704,5 @@ which is used by tooling, such as _Gfsh_, to connect to the cluster over HTTP. Even if you do not start the embedded HTTP service (Jetty Servlet Container), a _Manager_ still requires the `geode-http-service`, `geode-web` and `spring-boot-starter-jetty` dependencies. +The `geode-pulse` dependency, on the contrary, is only required if you want the _Manager_ to automatically start +the {apache-geode-docs}/tools_modules/pulse/pulse-overview.html[Pulse] Monitoring Tool