com.crowdproj.plugin.autoversion
Owner: Sergey Okatov
This plugin automatically increments version of the project for branches like release/1.2
https://github.com/crowdproj/crowdproj-plugin-autoversion
Sources: https://github.com/crowdproj/crowdproj-plugin-autoversion.git
Version 0.0.5 (latest)
Created 05 September 2023.
This plugin automatically increments version of the project for branches like release/1.2
Add this plugin to your build using the plugins DSL:
plugins {
id("com.crowdproj.plugin.autoversion") version "0.0.5"
}
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.crowdproj.plugin.autoversion:com.crowdproj.plugin.autoversion.gradle.plugin:0.0.5") }
It can then be applied in the precompiled script plugin:plugins { id("com.crowdproj.plugin.autoversion") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.crowdproj.plugin.autoversion:com.crowdproj.plugin.autoversion.gradle.plugin:0.0.5") } } apply(plugin = "com.crowdproj.plugin.autoversion")
- Applying plugins to all subprojects .