Remove unnecessary use of maven-pom-editor.gradle plugin.

This commit is contained in:
John Blum
2022-03-16 15:57:34 -07:00
parent 77dc4101c7
commit f390e65c92
3 changed files with 0 additions and 36 deletions

View File

@@ -60,8 +60,6 @@ description = 'Spring Session for Apache Geode'
//ext['spring-data-bom.version'] = "$springDataBomVersion"
//ext['spring-session-bom.version'] = "$springSessionBomVersion"
ext.MAVEN_POM_EDITOR_GRADLE = "$rootDir/gradle/maven-pom-editor.gradle"
nohttp {
source.exclude "buildSrc/build/**"
}

View File

@@ -1,33 +0,0 @@
def customizePom(gradleProject, pom) {
pom.whenConfigured { generatedPom ->
generatedPom.project {
developers {
developer {
id = 'vmw'
name = "VMware"
organization = "VMware, Inc."
email = "support@vmware.com"
}
}
scm {
connection = 'scm:git:git@github.com:spring-projects/spring-session-data-geode.git'
developerConnection = 'scm:git:git@github.com:spring-projects/spring-session-data-geode.git'
url = 'https://github.com/spring-projects/spring-session-data-geode'
}
}
}
}
project.install {
repositories.mavenInstaller {
customizePom(project, pom)
}
}
project.uploadArchives {
repositories.mavenDeployer {
customizePom(project, pom)
}
}

View File

@@ -3,7 +3,6 @@ plugins {
}
apply plugin: 'io.spring.convention.spring-module'
//apply from: MAVEN_POM_EDITOR_GRADLE
description = "Spring Session for Apache Geode"