Remove the unnecessary maven-pom-editor.gradle script plugin.
This commit is contained in:
@@ -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/**"
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user