cn.dorck.component.publisher
Owner: Hulk Su
Gradle plugin to publish library component quickly.
https://github.com/Moosphan/component-publisher
Sources: https://github.com/Moosphan/component-publisher.git
Version 1.0.4 (latest)
Created 05 September 2022.
Gradle plugin to publish library component quickly.
Add this plugin to your build using the plugins DSL:
plugins {
id("cn.dorck.component.publisher") version "1.0.4"
}
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("cn.dorck.component.publisher:cn.dorck.component.publisher.gradle.plugin:1.0.4") }
It can then be applied in the precompiled script plugin:plugins { id("cn.dorck.component.publisher") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cn.dorck.component.publisher:cn.dorck.component.publisher.gradle.plugin:1.0.4") } } apply(plugin = "cn.dorck.component.publisher")
- Applying plugins to all subprojects .