Search Gradle plugins

Version 1.2.0 (latest)

1.2.0

Created 31 August 2024.

A gradle plugin to automate your releases with Git

Using the plugins DSL:

plugins {
  id("io.github.simonhauck.release") version "1.2.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "io.github.simonhauck.release" version "1.2.0"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects