io.datalbry.plugin.semver.github
Owner:
Timo Gruen
Simple plugin to update the gradle version property using the git history and create GitHub releases
Sources: https://github.com/datalbry/gradle-semver-plugin
Version 0.4.2 (latest)
Created 16 March 2022.
Simple plugin to update the gradle version property using the git history and create GitHub releases
Add this plugin to your build using the plugins DSL:
plugins {
id("io.datalbry.plugin.semver.github") version "0.4.2"
}
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("io.datalbry.plugin.semver.github:io.datalbry.plugin.semver.github.gradle.plugin:0.4.2") }
It can then be applied in the precompiled script plugin:plugins { id("io.datalbry.plugin.semver.github") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.datalbry.plugin.semver.github:io.datalbry.plugin.semver.github.gradle.plugin:0.4.2") } } apply(plugin = "io.datalbry.plugin.semver.github")
- Applying plugins to all subprojects .