From cf8b607c68e4293c5a255a0ff2f4cc4fdf8206ed Mon Sep 17 00:00:00 2001 From: Yurii Shynbuiev Date: Mon, 7 Jul 2025 17:57:37 +0800 Subject: [PATCH 1/2] ci: switch to the maven central new endpoint Signed-off-by: Yurii Shynbuiev --- build.gradle.kts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 0fdfa4390..376c63274 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -172,9 +172,10 @@ subprojects { nexusPublishing { repositories { + // see https://central.sonatype.org/publish/publish-portal-ossrh-staging-api/#configuration sonatype { - nexusUrl.set(uri("https://oss.sonatype.org/service/local/")) - snapshotRepositoryUrl.set(uri("https://oss.sonatype.org/content/repositories/releases/")) + 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("OSSRH_USERNAME")) password.set(System.getenv("OSSRH_PASSWORD")) } From adcb9d37b866ce3d1988a731930bfdb16dc41d1c Mon Sep 17 00:00:00 2001 From: Yurii Shynbuiev Date: Mon, 7 Jul 2025 18:46:58 +0800 Subject: [PATCH 2/2] fix: change the apollo namespace to org.hyperledger.identus Signed-off-by: Yurii Shynbuiev --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 376c63274..410016d93 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,4 +1,4 @@ -val publishedMavenId: String = "org.hyperledger.identus.apollo" +val publishedMavenId: String = "org.hyperledger.identus" plugins { id("org.jetbrains.dokka") version "1.9.20"