Search Gradle plugins

net.wooga.github

This plugin provides tasks and conventions to publish artifacts to github releases

https://wooga.github.io/atlas-github/

Sources: https://github.com/wooga/atlas-github

Version 0.3.0

Created 05 July 2017.

This plugin provides tasks and conventions to publish artifacts to github releases

Using the plugins DSL:

plugins {
  id("net.wooga.github") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.wooga.gradle:atlas-github:0.3.0")
  }
}

apply(plugin = "net.wooga.github")

Using the plugins DSL:

plugins {
  id "net.wooga.github" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.wooga.gradle:atlas-github:0.3.0"
  }
}

apply plugin: "net.wooga.github"

Learn how to apply plugins to subprojects