From 4795b20ec7045c58cfc9879b3b732f4a8e02bf7b Mon Sep 17 00:00:00 2001 From: Marcin Grzejszczak Date: Thu, 23 Feb 2017 10:56:58 +0100 Subject: [PATCH] Making actuator and web optional dependencies without this change we're explicitly requiring our users to take both web and actuator into their classpath. That makes little sense since not every app is a web app. with this change we're making those deps optional fixes #524 --- spring-cloud-starter-sleuth/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-cloud-starter-sleuth/pom.xml b/spring-cloud-starter-sleuth/pom.xml index 2daab7da8..c6ad3cd4b 100644 --- a/spring-cloud-starter-sleuth/pom.xml +++ b/spring-cloud-starter-sleuth/pom.xml @@ -20,14 +20,14 @@ spring-cloud-starter - org.springframework.boot spring-boot-starter-web + optional - org.springframework.boot spring-boot-starter-actuator + optional org.springframework.boot