From 784a6d46c01cabb3145e3c6973f4ce18a52c0615 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Tue, 28 Apr 2020 15:14:02 +0200 Subject: [PATCH] Remove BOM workaround Since Gradle 6.2, the scope information is not published anymore with the BOM, so we don't need to manually remove it anymore --- framework-bom/framework-bom.gradle | 6 ------ 1 file changed, 6 deletions(-) diff --git a/framework-bom/framework-bom.gradle b/framework-bom/framework-bom.gradle index bf9d620a80..840f20537f 100644 --- a/framework-bom/framework-bom.gradle +++ b/framework-bom/framework-bom.gradle @@ -18,12 +18,6 @@ publishing { mavenJava(MavenPublication) { artifactId = 'spring-framework-bom' from components.javaPlatform - // remove scope information from published BOM - pom.withXml { - asNode().dependencyManagement.first().dependencies.first().each { - it.remove(it.scope.first()) - } - } } } } \ No newline at end of file