ch.ergon.gradle.goodies.versioning
Owner: Silvio Heuberger
Simple and automatic versioning from your git history for your java and android projects.
https://github.com/kungfoo/ergon-gradle-goodies-versioning
Sources: https://github.com/kungfoo/ergon-gradle-goodies-versioning
Version 0.0.0-21-g97656ba
Created 18 April 2018.
Simple and automatic versioning from your git history for your java and android projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("ch.ergon.gradle.goodies.versioning") version "0.0.0-21-g97656ba"
}
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("ch.ergon.gradle.goodies.versioning:ch.ergon.gradle.goodies.versioning.gradle.plugin:0.0.0-21-g97656ba") }
It can then be applied in the precompiled script plugin:plugins { id("ch.ergon.gradle.goodies.versioning") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ch.ergon.gradle.goodies.versioning:ch.ergon.gradle.goodies.versioning.gradle.plugin:0.0.0-21-g97656ba") } } apply(plugin = "ch.ergon.gradle.goodies.versioning")
- Applying plugins to all subprojects .