From c3c5dad5d9b010298787397707e3681bba227d88 Mon Sep 17 00:00:00 2001 From: Puneet Behl Date: Thu, 5 May 2022 13:21:26 +0530 Subject: [PATCH] [skip ci] Update to new sonatype nexus url --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index cb148b69a23..bc0bc1441f1 100644 --- a/build.gradle +++ b/build.gradle @@ -198,6 +198,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