com.github.breadmoirai.github-release
Owner: ly.ton
A Gradle Plugin to send Releases to Github
https://github.com/BreadMoirai/github-release-gradle-plugin
Sources: https://github.com/BreadMoirai/github-release-gradle-plugin
Using the plugins DSL:
plugins {
id("com.github.breadmoirai.github-release") version "2.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.breadmoirai:github-release:2.4.1")
}
}
apply(plugin = "com.github.breadmoirai.github-release")
Using the plugins DSL:
plugins {
id "com.github.breadmoirai.github-release" version "2.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.breadmoirai:github-release:2.4.1"
}
}
apply plugin: "com.github.breadmoirai.github-release"