From 63106e7ffb5bc103ef18d1674bcba3a7cf1d3f40 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 18 Jan 2017 19:10:05 +0000 Subject: [PATCH] Fix dependencyMangement plugin config Apply the dependency management plugin to all projects Do not use Maven-style exclusion semantics Issue: SPR-15162 --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index 774c45ac97..b02e67fc0a 100644 --- a/build.gradle +++ b/build.gradle @@ -105,6 +105,7 @@ configure(allprojects) { project -> apply plugin: "propdeps" apply plugin: "java" apply plugin: "test-source-set-dependencies" + apply plugin: "io.spring.dependency-management" apply from: "${gradleScriptDir}/ide.gradle" // Kotlin compiler does not support JDK 9 yet, see https://youtrack.jetbrains.com/issue/KT-14988 @@ -187,6 +188,7 @@ configure(allprojects) { project -> resolutionStrategy { cacheChangingModulesFor 0, 'seconds' } + applyMavenExclusions = false } dependencies {