io.hkhc.simplepublisher
所有者: Herman Cheung
封装大型仓库的构建脚本,尽可能使简单事物简单化
https://github.com/hkhc/simplepublisher
来源: https://github.com/hkhc/simplepublisher
版本 0.4.1(最新版本)
0.4.1
创建于 2020 年 5 月 13 日。
由于该插件版本将不再在 JCenter 成为一个永久重定向到 Maven Central 时解析,因为它仅使用在 JCenter 中找到的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 封装发布到 Maven 存储库的工件的样板代码
使用 插件 DSL
plugins {
id("io.hkhc.simplepublisher") version "0.4.1"
}
使用 Legacy 插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.hkhc.gradle:simplepublisher:0.4.1")
}
}
apply(plugin = "io.hkhc.simplepublisher")
使用 插件 DSL
plugins {
id "io.hkhc.simplepublisher" version "0.4.1"
}
使用 Legacy 插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.hkhc.gradle:simplepublisher:0.4.1"
}
}
apply plugin: "io.hkhc.simplepublisher"