From 8989492eee0c0e9a04fbd156012118bf5ee5335d Mon Sep 17 00:00:00 2001 From: Aastha Agrrawal Date: Mon, 17 Nov 2025 10:38:48 -0800 Subject: [PATCH] Change Nexus URL to fix publish pipeline --- gradle/shipkit.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle/shipkit.gradle b/gradle/shipkit.gradle index 5d79d5c1e..dfe0ff925 100644 --- a/gradle/shipkit.gradle +++ b/gradle/shipkit.gradle @@ -25,8 +25,8 @@ nexusPublishing { sonatype { username = System.getenv("SONATYPE_TOKEN_USERNAME") password = System.getenv("SONATYPE_TOKEN_PASSWORD") - nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/")) - snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")) + nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/")) + snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/")) } } }