Fix dependencyMangement plugin config

Apply the dependency management plugin to all projects
Do not use Maven-style exclusion semantics

Issue: SPR-15162
This commit is contained in:
Andy Wilkinson 2017-01-18 19:10:05 +00:00 committed by Brian Clozel
parent 17525ef969
commit 63106e7ffb
1 changed files with 2 additions and 0 deletions

View File

@ -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 {