Review, refactor and polish (local) Spring Build Conventions Gradle Plugins.

Remove the gradle/maven-pom-editor.gradle build script as this logic (concern) is handled by the MavenPlushingConventionsPlugin.

Clean up associated Gradle project build scripts affected by the Gradle Plugin changes.
This commit is contained in:
John Blum
2022-01-27 13:57:14 -08:00
parent 7ecf5551f0
commit bcf2a138e4
31 changed files with 606 additions and 370 deletions

View File

@@ -1,4 +1,4 @@
import io.spring.gradle.convention.SpringMavenPlugin
import io.spring.gradle.convention.SpringModulePlugin
apply plugin: 'io.spring.convention.bom'
apply from: MAVEN_POM_EDITOR_GRADLE
@@ -6,7 +6,7 @@ apply from: MAVEN_POM_EDITOR_GRADLE
sonarqube.skipProject = true
project.rootProject.allprojects.each { p ->
p.plugins.withType(SpringMavenPlugin) {
p.plugins.withType(SpringModulePlugin) {
if (!project.name.equals(p.name)) {
project.mavenBom.projects.add(p)
}