Search Gradle plugins

Release-engineering tasks (RC tagging, promotion, changelog generation) for a develop/release/main git flow.

https://github.com/duckasteroid/gradle-versioning

Sources: https://github.com/duckasteroid/gradle-versioning

Version 0.0.1 (latest)

Created 14 September 2026.

Release-engineering tasks (RC tagging, promotion, changelog generation) for a develop/release/main git flow.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.duckasteroid.release-flow") version "0.0.1"
}

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.duckasteroid.release-flow:io.github.duckasteroid.release-flow.gradle.plugin:0.0.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.duckasteroid.release-flow")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.duckasteroid.release-flow:io.github.duckasteroid.release-flow.gradle.plugin:0.0.1")
      }
    }
    
    apply(plugin = "io.github.duckasteroid.release-flow")
  • Applying plugins to all subprojects .