From b84c8ab82bd33488b0eeffeb1cca9f7d6742e5e3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 1 Aug 2025 02:31:35 +0000 Subject: [PATCH 1/2] Update embedded package dependencies --- embedded/android/gradle/libs.versions.toml | 4 ++-- embedded/android/gradle/wrapper/gradle-wrapper.properties | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/embedded/android/gradle/libs.versions.toml b/embedded/android/gradle/libs.versions.toml index 095521b5..9982f14d 100644 --- a/embedded/android/gradle/libs.versions.toml +++ b/embedded/android/gradle/libs.versions.toml @@ -2,11 +2,11 @@ # https://docs.gradle.org/current/userguide/platforms.html#sub::toml-dependencies-format [versions] -android_gradle_plugin = "8.11.0" +android_gradle_plugin = "8.11.1" [libraries] android_gradle_plugin = { module = "com.android.tools.build:gradle", version.ref = "android_gradle_plugin" } [plugins] android_library = { id = "com.android.library", version.ref = "android_gradle_plugin" } -maven_publish = { id = "com.vanniktech.maven.publish", version = "0.33.0" } \ No newline at end of file +maven_publish = { id = "com.vanniktech.maven.publish", version = "0.34.0" } \ No newline at end of file diff --git a/embedded/android/gradle/wrapper/gradle-wrapper.properties b/embedded/android/gradle/wrapper/gradle-wrapper.properties index be2dc79a..7705927e 100644 --- a/embedded/android/gradle/wrapper/gradle-wrapper.properties +++ b/embedded/android/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-all.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME From c9fb80f70283742d48bd38b01659729635c96bd7 Mon Sep 17 00:00:00 2001 From: Robin Date: Fri, 1 Aug 2025 12:38:41 +0200 Subject: [PATCH 2/2] 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()