From 358289e3458bf64e41b39e8b7edf5030b1e0f516 Mon Sep 17 00:00:00 2001 From: Brian Demers Date: Tue, 10 Mar 2026 17:06:49 -0400 Subject: [PATCH] Update the publish url to the Sonatype Staging URL --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 33d4c61..df7ede6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -39,8 +39,8 @@ tasks.named("dokkaJavadocCollector").configure { 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.set(System.getenv("SONATYPE_USERNAME")) password.set(System.getenv("SONATYPE_PASSWORD"))