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:
@@ -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)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user