no.systemfabrikken.githubreleaseplugin
Owner: Kai Lilleby
Gradle plugin for github release.
https://github.com/systemfabrikken/gradle-githubrelease-plugin
Sources: https://github.com/systemfabrikken
Using the plugins DSL:
plugins {
id("no.systemfabrikken.githubreleaseplugin") version "2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.no.systemfabrikken.githubreleaseplugin:gradle-githubrelease-plugin:2.2")
}
}
apply(plugin = "no.systemfabrikken.githubreleaseplugin")
Using the plugins DSL:
plugins {
id "no.systemfabrikken.githubreleaseplugin" version "2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.no.systemfabrikken.githubreleaseplugin:gradle-githubrelease-plugin:2.2"
}
}
apply plugin: "no.systemfabrikken.githubreleaseplugin"