Search Gradle plugins

Version 1.0.0 (latest)

Created 01 October 2017.

Plugin for creating Github releases and uploading assets.

Using the plugins DSL:

plugins {
  id("earth.cube.github") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.earth.cube.gradle.plugins:cube-gradleplugins-github:1.0-SNAPSHOT")
  }
}

apply(plugin = "earth.cube.github")

Using the plugins DSL:

plugins {
  id "earth.cube.github" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.earth.cube.gradle.plugins:cube-gradleplugins-github:1.0-SNAPSHOT"
  }
}

apply plugin: "earth.cube.github"

Learn how to apply plugins to subprojects