Ignore spring-framework-bom project in global config

This commit ensures that the spring-framework-bom project is ignored
from the global configuration block. If not, many conventions and
dependencies are added to it and add noise to the published BOM.

See gh-23282
This commit is contained in:
Brian Clozel 2019-08-20 20:33:10 +02:00
parent e9523161f0
commit 4a3e2484ac
2 changed files with 2 additions and 1 deletions

View File

@ -49,7 +49,7 @@ ext {
}
}
configure(allprojects) { project ->
configure(allprojects.findAll { (it.name != "spring-framework-bom") } ) { project ->
group = "org.springframework"
apply plugin: "java"

View File

@ -1,5 +1,6 @@
description = "Spring Framework (Bill of Materials)"
apply plugin: "java"
apply plugin: "maven"
configurations.archives.artifacts.clear()