Search Gradle plugins

Version 3.0.0 (latest)

3.0.0

Created 13 March 2019.

A Gradle Plugin to post releases to GitHub.

Using the plugins DSL:

plugins {
  id("com.heinrichreimer.github-release") version "3.0.0"
}

Using legacy plugin application:

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

apply(plugin = "com.heinrichreimer.github-release")

Using the plugins DSL:

plugins {
  id "com.heinrichreimer.github-release" version "3.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.heinrichreimer:github-release:3.0.0"
  }
}

apply plugin: "com.heinrichreimer.github-release"

Learn how to apply plugins to subprojects