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:
parent
17525ef969
commit
63106e7ffb
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue