Skip to content

Commit 4603c82

Browse files
committed
remove :core from starter dependencies since it's included in :web
1 parent c898d49 commit 4603c82

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

azure-application-insights-spring-boot-starter/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ sourceSets {
4747

4848
def springBootVersion = '1.5.21.RELEASE'
4949
dependencies {
50-
compile(project(path: ':core', configuration: 'shadow'))
51-
compile(project(path: ':web', configuration: 'shadow'))
50+
compile(project(path: ':web', configuration: 'shadow')) // web includes core
5251
compile(project(':ApplicationInsightsInternalLogger'))
5352
compile ([group: 'org.apache.commons', name: 'commons-lang3', version: '3.7'])
5453

@@ -69,7 +68,6 @@ dependencies {
6968
ext.dependenciesPrefix = 'com.microsoft.applicationinsights.boot.dependencies'
7069
shadowJar {
7170
dependencies {
72-
exclude(project(':core'))
7371
exclude(project(':web'))
7472
exclude(project(':ApplicationInsightsInternalLogger'))
7573
}

0 commit comments

Comments
 (0)