From f421945c1912960995528766284bec6da97bdd52 Mon Sep 17 00:00:00 2001 From: Sebastian Sampaoli Date: Tue, 2 Jun 2026 15:26:32 -0300 Subject: [PATCH] Update sonatype URLs --- gradle/blowdryer-scripts/sonatype.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle/blowdryer-scripts/sonatype.gradle b/gradle/blowdryer-scripts/sonatype.gradle index 781f9ae3..3a9a41fa 100644 --- a/gradle/blowdryer-scripts/sonatype.gradle +++ b/gradle/blowdryer-scripts/sonatype.gradle @@ -27,8 +27,8 @@ if (project.parent == null) { nexusPublishing { repositories { sonatype { - 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/")) username = new String(nexus_user.decodeBase64()) password = new String(nexus_pass.decodeBase64()) }