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,33 +0,0 @@
def customizePom(gradleProject, pom) {
pom.whenConfigured { generatedPom ->
generatedPom.project {
developers {
developer {
id = 'jxblum'
name = "John Blum"
email = "jblum@pivotal.io"
}
}
scm {
connection = 'scm:git:git@github.com:spring-projects/spring-boot-data-geode.git'
developerConnection = 'scm:git:git@github.com:spring-projects/spring-boot-data-geode.git'
url = 'https://github.com/spring-projects/spring-boot-data-geode'
}
url = 'https://github.com/spring-projects/spring-boot-data-geode#spring-boot-for-apache-geode'
}
}
}
project.install {
repositories.mavenInstaller {
customizePom(project, pom)
}
}
project.uploadArchives {
repositories.mavenDeployer {
customizePom(project, pom)
}
}