no.systemfabrikken.githubreleaseplugin
所有者: 凯·利勒比
Gradle 用于 github 发布的插件。
https://github.com/systemfabrikken/gradle-githubrelease-plugin
来源: https://github.com/systemfabrikken
使用 插件 DSL
plugins {
id("no.systemfabrikken.githubreleaseplugin") version "3.3"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("no.systemfabrikken.githubreleaseplugin:gradle-githubrelease-plugin:3.3")
}
}
apply(plugin = "no.systemfabrikken.githubreleaseplugin")
使用 插件 DSL
plugins {
id "no.systemfabrikken.githubreleaseplugin" version "3.3"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "no.systemfabrikken.githubreleaseplugin:gradle-githubrelease-plugin:3.3"
}
}
apply plugin: "no.systemfabrikken.githubreleaseplugin"