From fea031a138c80d84ad6becec97b25ba9891352f5 Mon Sep 17 00:00:00 2001 From: Daniel Chao Date: Fri, 11 Jul 2025 05:48:31 -0700 Subject: [PATCH] Switch publishing to sonatype central (#1121) OSSRH is now EOL, so we need to publish to this new repository. --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 1c0facbd..45ce941e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -32,8 +32,8 @@ plugins { 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/")) } } }