Owner:
nico
Clean-room replacement for Gradle's maven-publish + Vanniktech. Emits JAR + sources + javadoc + POM + Gradle Module Metadata to Maven Local, Maven Central, or any custom Maven repo — read from the de-facto community POM_* gradle.properties convention. Fixes gradle/gradle#20294 by default.
Version 2026.05.10 (latest)
Created 13 May 2026.
Clean-room replacement for Gradle's maven-publish + Vanniktech. Emits JAR + sources + javadoc + POM + Gradle Module Metadata to Maven Local, Maven Central, or any custom Maven repo — read from the de-facto community POM_* gradle.properties convention. Fixes gradle/gradle#20294 by default.
Add this plugin to your build using the plugins DSL:
plugins {
id("software.visionary.publish") version "2026.05.10"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("software.visionary.publish:software.visionary.publish.gradle.plugin:2026.05.10") }It can then be applied in the precompiled script plugin:plugins { id("software.visionary.publish") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("software.visionary.publish:software.visionary.publish.gradle.plugin:2026.05.10") } } apply(plugin = "software.visionary.publish") - Applying plugins to all subprojects .