From 941c1346852d1653992f4e527385df6ed5392fe6 Mon Sep 17 00:00:00 2001 From: Helios Alonso Cabanillas Date: Mon, 7 Mar 2022 23:48:09 -0800 Subject: [PATCH] Use the new sonatype upload url --- .buildscript/publish.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildscript/publish.gradle b/.buildscript/publish.gradle index 1bc7674..57455d3 100644 --- a/.buildscript/publish.gradle +++ b/.buildscript/publish.gradle @@ -18,12 +18,12 @@ def nexusPassword() { def getReleaseRepositoryUrl() { return hasProperty('RELEASE_REPOSITORY_URL') ? RELEASE_REPOSITORY_URL : - "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" } def getSnapshotRepositoryUrl() { return hasProperty('SNAPSHOT_REPOSITORY_URL') ? SNAPSHOT_REPOSITORY_URL : - "https://oss.sonatype.org/content/repositories/snapshots/" + "https://s01.oss.sonatype.org/content/repositories/snapshots/" } def configurePom(pom, args) {