Search Gradle plugins

Version 0.4.4 (latest)

Created 15 May 2021.

Gradle plugin for Github releases

Using the plugins DSL:

plugins {
  id("com.github.humblerookie.gradle") version "0.4.4"
}

Using legacy plugin application:

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

apply(plugin = "com.github.humblerookie.gradle")

Using the plugins DSL:

plugins {
  id "com.github.humblerookie.gradle" version "0.4.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.humblerookie:gradle-github-plugin:0.4.4"
  }
}

apply plugin: "com.github.humblerookie.gradle"

Learn how to apply plugins to subprojects