com.robothy.github-repository-release-plugin
所有者: luo roboty
自动更新gradle项目版本。添加标签并推送到远程github仓库。
https://github.com/Robothy/github-repository-release-plugin
来源: https://github.com/Robothy/github-repository-release-plugin
使用plugins DSL
plugins {
id("com.robothy.github-repository-release-plugin") version "1.3"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.robothy:github-repository-release-gradle-plugin:1.3")
}
}
apply(plugin = "com.robothy.github-repository-release-plugin")
使用plugins DSL
plugins {
id "com.robothy.github-repository-release-plugin" version "1.3"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.robothy:github-repository-release-gradle-plugin:1.3"
}
}
apply plugin: "com.robothy.github-repository-release-plugin"