Owner:
karriere.at
The karriere.at version plugin for automatic versioning.
https://github.com/karriereat/gradle-version-plugin
Sources: https://github.com/karriereat/gradle-version-plugin
Version 1.2.0
Created 13 June 2017.
A plugin developed by karriere.at that handles your versioning automatically. Check out the description on Github <a href="https://github.com/karriereat/gradle-version-plugin">GitHub</a>.
Add this plugin to your build using the plugins DSL:
plugins {
id("at.karriere.version") version "1.2.0"
}
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("at.karriere.version:at.karriere.version.gradle.plugin:1.2.0") }It can then be applied in the precompiled script plugin:plugins { id("at.karriere.version") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("at.karriere.version:at.karriere.version.gradle.plugin:1.2.0") } } apply(plugin = "at.karriere.version") - Applying plugins to all subprojects .