com.mobilesolutionworks.gradle.publish
Owner: Yunarta Kartawahyudi
Reusable project publishing to be used in along Jenkins pipeline.
https://github.com/yunarta/works-ci-publish-gradle-plugin
Sources: https://github.com/yunarta/https://github.com/yunarta/works-ci-publish-gradle-plugin
Version 2.0.10 (latest)
Created 18 June 2021.
Reusable project publishing to be used in along Jenkins pipeline.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.mobilesolutionworks.gradle.publish") version "2.0.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("com.mobilesolutionworks.gradle.publish:com.mobilesolutionworks.gradle.publish.gradle.plugin:2.0.10") }
It can then be applied in the precompiled script plugin:plugins { id("com.mobilesolutionworks.gradle.publish") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.mobilesolutionworks.gradle.publish:com.mobilesolutionworks.gradle.publish.gradle.plugin:2.0.10") } } apply(plugin = "com.mobilesolutionworks.gradle.publish")
- Applying plugins to all subprojects .