From fb310b759894c62b763a1a17c9fab106e574d8d8 Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Thu, 6 Feb 2020 11:56:43 -0800 Subject: [PATCH] Fix dependency in published pom file --- azure-application-insights-spring-boot-starter/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-application-insights-spring-boot-starter/build.gradle b/azure-application-insights-spring-boot-starter/build.gradle index db1865c667d..d4dce90844d 100644 --- a/azure-application-insights-spring-boot-starter/build.gradle +++ b/azure-application-insights-spring-boot-starter/build.gradle @@ -49,7 +49,7 @@ apply from: "$buildScriptsDir/provided-configuration.gradle" def springBootVersion = '1.5.21.RELEASE' dependencies { - compile(project(path: ':web', configuration: 'shadow')) // web includes core + compile(project(':web')) // web includes core compile(project(':ApplicationInsightsInternalLogger')) compile ([group: 'org.apache.commons', name: 'commons-lang3', version: '3.7'])