io.github.mugurell.autopublish
Owner: []
An anti-bikeshedding (ktlint ™) solution for using local projects in your own!
https://github.com/Mugurell/Autopublish
Sources: https://github.com/Mugurell/Autopublish
Version 0.9.2 (latest)
Created 05 August 2023.
An anti-bikeshedding (ktlint ™) solution for using local projects in your own!
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.mugurell.autopublish") version "0.9.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("io.github.mugurell.autopublish:io.github.mugurell.autopublish.gradle.plugin:0.9.2") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.mugurell.autopublish") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.mugurell.autopublish:io.github.mugurell.autopublish.gradle.plugin:0.9.2") } } apply(plugin = "io.github.mugurell.autopublish")
- Applying plugins to all subprojects .