From 0db5e17b2fc798d2da4d085d909a5ce14b6062ce Mon Sep 17 00:00:00 2001 From: Nicklas Lundin Date: Mon, 4 Aug 2025 16:05:11 +0200 Subject: [PATCH] chore: update nexus publishing uris Signed-off-by: Nicklas Lundin --- build.gradle.kts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 86593d7..7445927 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -19,10 +19,8 @@ version = project.extra["version"].toString() nexusPublishing { this.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 = System.getenv("OSSRH_USERNAME") password = System.getenv("OSSRH_PASSWORD") }