mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-02-24 16:05:15 +00:00
spring-security-bom it provides dependency management for itself. This commit avoids adding it to the dependency management section. Fixes gh-4878
13 lines
302 B
Groovy
13 lines
302 B
Groovy
apply plugin: 'maven-bom'
|
|
apply plugin: 'io.spring.convention.artifactory'
|
|
|
|
sonarqube.skipProject = true
|
|
|
|
project.rootProject.allprojects.each { p ->
|
|
p.plugins.withType(io.spring.gradle.convention.SpringMavenPlugin) {
|
|
if (!project.name.equals(p.name)) {
|
|
project.mavenBom.projects.add(p)
|
|
}
|
|
}
|
|
}
|