com.dorkbox.GradlePublish
Owner:
Dorkbox LLC
Gradle Plugin to publish projects to the sonatype repository
https://git.dorkbox.com/dorkbox/GradlePublish
Sources: https://git.dorkbox.com/dorkbox/GradlePublish
Version 1.22.2 (latest)
Created 06 February 2025.
Gradle Plugin to publish projects to the sonatype repository
Add this plugin to your build using the plugins DSL:
plugins {
id("com.dorkbox.GradlePublish") version "1.22.2"
}
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("com.dorkbox.GradlePublish:com.dorkbox.GradlePublish.gradle.plugin:1.22.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.dorkbox.GradlePublish") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.dorkbox.GradlePublish:com.dorkbox.GradlePublish.gradle.plugin:1.22.2") } } apply(plugin = "com.dorkbox.GradlePublish")
- Applying plugins to all subprojects .