From c9fb80f70283742d48bd38b01659729635c96bd7 Mon Sep 17 00:00:00 2001 From: Robin Date: Fri, 1 Aug 2025 12:38:41 +0200 Subject: [PATCH] Migrate away from Sonatype repo for embedded builds It's been shut down and we can no longer publish to it. --- embedded/android/lib/build.gradle.kts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/embedded/android/lib/build.gradle.kts b/embedded/android/lib/build.gradle.kts index 4684f21b..0a1863fd 100644 --- a/embedded/android/lib/build.gradle.kts +++ b/embedded/android/lib/build.gradle.kts @@ -5,8 +5,6 @@ * Please see LICENSE files in the repository root for full details. */ -import com.vanniktech.maven.publish.SonatypeHost - plugins { alias(libs.plugins.android.library) alias(libs.plugins.maven.publish) @@ -27,7 +25,7 @@ android { } mavenPublishing { - publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL, automaticRelease = true) + publishToMavenCentral(automaticRelease = true) signAllPublications()