io.github.simonhauck.release
Owner: Simon Hauck
A gradle plugin to automate your releases with Git
https://github.com/simonhauck/gradle-release-plugin
Sources: https://github.com/simonhauck/gradle-release-plugin
Version 1.3.0 (latest)
Created 19 September 2024.
A gradle plugin to automate your releases with Git
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.simonhauck.release") version "1.3.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("io.github.simonhauck.release:io.github.simonhauck.release.gradle.plugin:1.3.0") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.simonhauck.release") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.simonhauck.release:io.github.simonhauck.release.gradle.plugin:1.3.0") } } apply(plugin = "io.github.simonhauck.release")
- Applying plugins to all subprojects .