net.wooga.github
Owner: Manne Endres
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 2.0.0
2.0.0
Created 09 November 2021.
This plugin provides tasks and conventions to publish artifacts to github releases
Using the plugins DSL:
plugins {
id("net.wooga.github") version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.wooga.gradle:atlas-github:2.0.0")
}
}
apply(plugin = "net.wooga.github")
Using the plugins DSL:
plugins {
id "net.wooga.github" version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.wooga.gradle:atlas-github:2.0.0"
}
}
apply plugin: "net.wooga.github"