Remove spring-security-bom in dependencyManagement

spring-security-bom it provides dependency management for itself. This
commit avoids adding it to the dependency management section.

Fixes gh-4878
This commit is contained in:
Eddú Meléndez 2017-12-06 15:50:56 -08:00 committed by Rob Winch
parent c856c376df
commit 9b84204e10
1 changed files with 3 additions and 1 deletions

View File

@ -5,6 +5,8 @@ sonarqube.skipProject = true
project.rootProject.allprojects.each { p ->
p.plugins.withType(io.spring.gradle.convention.SpringMavenPlugin) {
project.mavenBom.projects.add(p)
if (!project.name.equals(p.name)) {
project.mavenBom.projects.add(p)
}
}
}