diff --git a/build.gradle b/build.gradle index ffd21e3..fcf61aa 100644 --- a/build.gradle +++ b/build.gradle @@ -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/**" } diff --git a/gradle/maven-pom-editor.gradle b/gradle/maven-pom-editor.gradle deleted file mode 100644 index 95cba31..0000000 --- a/gradle/maven-pom-editor.gradle +++ /dev/null @@ -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) - } -} diff --git a/spring-session-data-geode/spring-session-data-geode.gradle b/spring-session-data-geode/spring-session-data-geode.gradle index 8bc7bd8..58878f1 100644 --- a/spring-session-data-geode/spring-session-data-geode.gradle +++ b/spring-session-data-geode/spring-session-data-geode.gradle @@ -3,7 +3,6 @@ plugins { } apply plugin: 'io.spring.convention.spring-module' -//apply from: MAVEN_POM_EDITOR_GRADLE description = "Spring Session for Apache Geode"