Remove the unnecessary maven-pom-editor.gradle script plugin.

This commit is contained in:
John Blum
2022-03-17 15:52:15 -07:00
parent 7fd147b1cb
commit fd34b168e6
3 changed files with 0 additions and 40 deletions

View File

@@ -58,8 +58,6 @@ description = 'Spring Test Framework for Apache Geode'
ext['spring-framework.version'] = "$springVersion"
ext['spring-data-bom.version'] = "$springDataBomVersion"
ext.MAVEN_POM_EDITOR_GRADLE = "$rootDir/gradle/maven-pom-editor.gradle"
nohttp {
source.exclude "**/target/**", "buildSrc/build/**"
}

View File

@@ -1,37 +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-test-data-geode.git'
developerConnection = 'scm:git:git@github.com:spring-projects/spring-test-data-geode.git'
url = 'https://github.com/spring-projects/spring-test-data-geode'
}
}
generatedPom.dependencies = generatedPom.dependencies.findAll {
dependency -> dependency.groupId != 'org.springframework.boot'
}
}
}
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 Test Framework for Apache Geode"