com.trevjonez.AndroidGithubReleasePlugin
所有者: Trevor Jones
Android变体感知任务,用于创建 GitHub 发布和上传资源
https://github.com/trevjonez/AndroidGithubReleasePlugin
源代码:https://github.com/trevjonez/AndroidGithubReleasePlugin.git
版本 1.2.2(最新)
1.2.2
创建于 2019 年 7 月 3 日。
由于 JCenter 将永久重定向到 Maven Central,因此此插件版本将不再可用,因为它只使用在 JCenter 中可找到的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact Android变体感知任务,用于创建 GitHub 发布和上传资源
使用 插件 DSL
plugins {
id("com.trevjonez.AndroidGithubReleasePlugin") version "1.2.2"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.trevjonez.AndroidGithubReleasePlugin:plugin:1.2.2")
}
}
apply(plugin = "com.trevjonez.AndroidGithubReleasePlugin")
使用 插件 DSL
plugins {
id "com.trevjonez.AndroidGithubReleasePlugin" version "1.2.2"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.trevjonez.AndroidGithubReleasePlugin:plugin:1.2.2"
}
}
apply plugin: "com.trevjonez.AndroidGithubReleasePlugin"