From 6f6a82465b5b3ec2fbd5edfdfb340d5f3ea00ffa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrique=20Lo=CC=81pez=20Man=CC=83as?= Date: Wed, 2 Jul 2025 12:20:43 +0200 Subject: [PATCH] chore: migrated new Maven Central URL --- .../convention/src/main/kotlin/PublishingConventionPlugin.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-logic/convention/src/main/kotlin/PublishingConventionPlugin.kt b/build-logic/convention/src/main/kotlin/PublishingConventionPlugin.kt index 2740add13..7a8055372 100644 --- a/build-logic/convention/src/main/kotlin/PublishingConventionPlugin.kt +++ b/build-logic/convention/src/main/kotlin/PublishingConventionPlugin.kt @@ -111,9 +111,9 @@ class PublishingConventionPlugin : Plugin { repositories { maven { val releasesRepoUrl = - uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/") + uri("https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/") val snapshotsRepoUrl = - uri("https://oss.sonatype.org/content/repositories/snapshots/") + uri("https://central.sonatype.com/repository/maven-snapshots/") url = if (project.version.toString() .endsWith("SNAPSHOT") ) snapshotsRepoUrl else releasesRepoUrl