Update plugin maven-publish to v0.36.0#1065
Conversation
04c507a to
fc56a74
Compare
88856e9 to
5455b95
Compare
945add7 to
e98404c
Compare
e98404c to
111a9db
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
Comment @cursor review or bugbot run to trigger another review on this PR
Reviewed by Cursor Bugbot for commit 94b2a94. Configure here.
| kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" } | ||
| kotlinter = { id = "org.jmailen.kotlinter", version = "5.2.0" } | ||
| maven-publish = { id = "com.vanniktech.maven.publish", version = "0.34.0" } | ||
| maven-publish = { id = "com.vanniktech.maven.publish", version = "0.36.0" } |
There was a problem hiding this comment.
AGP version incompatible with updated maven-publish plugin
High Severity
The maven-publish plugin v0.36.0 requires a minimum Android Gradle Plugin version of 8.13.0, but the project uses AGP 8.12.2 (the android-library plugin). This version mismatch is likely to cause build failures when the maven-publish plugin is applied alongside the Android library plugin.
Additional Locations (1)
Reviewed by Cursor Bugbot for commit 94b2a94. Configure here.
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |


This PR contains the following updates:
0.34.0→0.36.0Release Notes
vanniktech/gradle-maven-publish-plugin (com.vanniktech.maven.publish)
v0.36.0Compare Source
BREAKING
DirectorySignatureTypeinternal.Behavior changes
validateDeploymentnow has theDeploymentValidationenum as type instead of being a boolean. The defaultis now to just wait for the
VALIDATEDstate. The previous behavior can be achieved by setting it toPUBLISHED.NONEcan be used for disabling the validation completely.configure(...)manually to configure what to publish and not passingjavadocJarexplicity,the plugin now defaults to publishing an empty javadoc jar.
Features
when using the default options and the Dokka plugin is applied to the project.
JavadocJarandSourcesJaroptions toconfigureBasedOnAppliedPluginsand to allapplicable project types that can be passed to
configure. The previousBooleanbased versions havebeen deprecated.
mavenCentralDeploymentValidationandmavenCentralAutomaticPublishingare used for the default values of the 2 parameters when they are not passedexplicitly. This allows to more easily override them in certain environments.
gradle.propertiesfiles are now considered inthe same way they are when isolated projects is disabled.
Improvements
Minimum supported versions
Compatibility tested up to
v0.35.0Compare Source
com.android.kotlin.multiplatform.library.SONATYPE_HOSTis not set toCENTRAL_PORTAL.Thanks to @joshfriend, @Flowdalic and @Goooler for their contributions to this release.
Minimum supported versions
Compatibility tested up to
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.
Note
Low Risk
Simple dependency version bump for a build plugin with no code changes.
Overview
Updates the
maven-publishGradle plugin from0.34.0to0.36.0ingradle/libs.versions.toml. This version bump includes support for Maven Central deployment validation, improved Dokka integration for Android projects, and better error messages for missing credentials.Reviewed by Cursor Bugbot for commit 94b2a94. Configure here.