Search Gradle plugins

Version 0.0.2

0.0.2

Created 21 May 2024.

A gradle plugin to automate your releases with Git

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects