From 7082b0d126f57434c6287b6654a3d5319563c6d1 Mon Sep 17 00:00:00 2001 From: James Daugherty Date: Tue, 3 Dec 2024 14:03:15 -0500 Subject: [PATCH] Remove nexusPublishing customizations --- build.gradle | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/build.gradle b/build.gradle index 81c301f9..ae56dd0f 100644 --- a/build.gradle +++ b/build.gradle @@ -26,25 +26,6 @@ def publishedProjects = pluginProjects + profileProjects version projectVersion group "org.grails.plugins" -ext.set('isSnapshot', projectVersion.endsWith('-SNAPSHOT')) -ext.set('isReleaseVersion', !isSnapshot) - -if (isReleaseVersion) { - nexusPublishing { - String nexusUser = findProperty('sonatypeUsername') - String nexusPass = findProperty('sonatypePassword') - String nexusStagingProfileId = findProperty('sonatypeStagingProfileId') - repositories { - sonatype { - nexusUrl = uri("https://s01.oss.sonatype.org/service/local/") - username = nexusUser - password = nexusPass - stagingProfileId = nexusStagingProfileId - } - } - } -} - subprojects { Project project -> group "org.grails.plugins" version projectVersion