Search Gradle plugins

Version 1.0.0-RC2

1.0.0-RC2

Created 06 June 2024.

A gradle plugin to automate your releases with Git

Using the plugins DSL:

plugins {
  id("io.github.simonhauck.release") version "1.0.0-RC2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.simonhauck.release:release-plugin:1.0.0-RC2")
  }
}

apply(plugin = "io.github.simonhauck.release")

Using the plugins DSL:

plugins {
  id "io.github.simonhauck.release" version "1.0.0-RC2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.simonhauck.release:release-plugin:1.0.0-RC2"
  }
}

apply plugin: "io.github.simonhauck.release"

Learn how to apply plugins to subprojects