加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
upload1.gradle 836 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhuzhihui7 提交于 2021-04-20 10:57 . del all history
apply plugin: 'maven'
apply plugin: 'maven-publish'
task publish2hpm {
doLast {
version = "v1.0.0"
pom {
project {
url "https://gitee.com/openharmony-tpc/ohos-ZBLibrary"
properties = [
'hpm.bundle.name' : '@opensource/ohos-ZBLibrary-qrcode',
'hpm.bundle.tags' : 'UI',
'hpm.bundle.keywords': 'list'
]
}
}.writeTo("pom4hpm.xml")
def proc
if (System.properties['os.name'].contains('Windows')) {
proc = 'hpm.cmd x2h gradle'.execute()
} else {
proc = 'hpm x2h gradle'.execute()
}
proc.waitForProcessOutput(System.out, System.err)
def pom4hpm = file("./pom4hpm.xml")
//delete pom4hpm
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化