From b8f7ca4336119eba62e4e369775c42947f46571e Mon Sep 17 00:00:00 2001 From: Uriah Carpenter Date: Tue, 22 Jul 2025 09:51:55 -0500 Subject: [PATCH] update to new maven central server see https://central.sonatype.org/publish/publish-portal-ossrh-staging-api/#configuration --- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index eb8947a..bab3b51 100644 --- a/build.gradle +++ b/build.gradle @@ -55,7 +55,11 @@ subprojects { nexusPublishing { repositories { - sonatype() + // see https://central.sonatype.org/publish/publish-portal-ossrh-staging-api/#configuration + sonatype { + nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/")) + snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/")) + } } }