From 9917a1e93255617f633dae551580bc5fa57af30a Mon Sep 17 00:00:00 2001 From: Puneet Behl Date: Thu, 16 Dec 2021 15:24:55 +0530 Subject: [PATCH] Update Nexus Publishing URL to new Sonatype infrastructure --- common-publishing.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/common-publishing.gradle b/common-publishing.gradle index 4e0775c..37078cb 100644 --- a/common-publishing.gradle +++ b/common-publishing.gradle @@ -37,6 +37,7 @@ if (isReleaseVersion) { def ossUser = System.getenv("SONATYPE_USERNAME") ?: project.hasProperty("sonatypeOssUsername") ? project.sonatypeOssUsername : '' def ossPass = System.getenv("SONATYPE_PASSWORD") ?: project.hasProperty("sonatypeOssPassword") ? project.sonatypeOssPassword : '' def ossStagingProfileId = System.getenv("SONATYPE_STAGING_PROFILE_ID") ?: project.hasProperty("sonatypeOssStagingProfileId") ? project.sonatypeOssStagingProfileId : '' + nexusUrl = uri("https://s01.oss.sonatype.org/service/local/") username = ossUser password = ossPass stagingProfileId = ossStagingProfileId