Search Gradle plugins

Version 1.2

Created 18 February 2023.

Automaticall update gradle project version. Add tag and push to remote github repository.

Using the plugins DSL:

plugins {
  id("com.robothy.github-repository-release-plugin") version "1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.robothy:github-repository-release-gradle-plugin:1.2")
  }
}

apply(plugin = "com.robothy.github-repository-release-plugin")

Using the plugins DSL:

plugins {
  id "com.robothy.github-repository-release-plugin" version "1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.robothy:github-repository-release-gradle-plugin:1.2"
  }
}

apply plugin: "com.robothy.github-repository-release-plugin"

Learn how to apply plugins to subprojects