gpt4 book ai didi

gradle - Bintray VCS标记

转载 作者:行者123 更新时间:2023-12-03 05:14:58 26 4
gpt4 key购买 nike

所以我有一个Bintray存储库,但是我很难从gradle上载到它。好吧,我的意思是版本管理无法按我的要求工作,目前对于我上传的每个.jar,我都必须在配置和依赖项中增加版本。我知道这不是应该怎么做的。我的问题是如何使用Bintray自动执行VCS标记。现在,我的上传配置如下所示(使用bintray插件):

bintray {
user = "$bintrayUser"
key = "$bintrayKey"
publications = ['maven']
dryRun = false
publish = true
pkg {
repo = "$targetBintrayRepo"
name = "$targetBintrayPackage"
desc = ''
websiteUrl = "$programWebsiteUrl"
issueTrackerUrl = "$programIssueUrl"
vcsUrl = "$programVcsUrl"
licenses = ["$programLicense"]
labels = []
publicDownloadNumbers = true

version {
name = "$programVersion"
released = new java.util.Date()
vcsTag = "$programVcsTag"
}

}
}
我的变量是:
def programVersion = '0'
def programVcsTag = '0.0.0'
def programGroup = 'com.gmail.socraticphoenix'
def targetBintrayRepo = 'Main'
def targetBintrayPackage = 'java-api'
def programLicense = 'MIT'
def programWebsiteUrl = 'https://github.com/meguy26/PlasmaAPI'
def programIssueUrl = 'https://github.com/meguy26/PlasmaAPI/issues'
def programVcsUrl = 'https://github.com/meguy26/PlasmaAPI.git'
但是 here没有标记出现,并且再次运行发布(即使使用不同的vcs标记)也会导致版本已存在错误。 ( Could not upload to 'https://api.bintray.com/content/meguy26/Main/java-api/0/com/gmail/socraticphoenix/PlasmaAPI/0/PlasmaAPI-0.jar': HTTP/1.1 409 Conflict [message:Unable to upload files: An artifact with the path 'com/gmail/socraticphoenix/PlasmaAPI/0/PlasmaAPI-0.jar' already exists])
抱歉,如果我不是菜鸟,但是我不明白为什么它不起作用,我填写了所有适当的变量(我认为)

最佳答案

Bintray不支持每个版本多个标签。版本是唯一的字符串。如果要从具有不同标签的相同版本中释放某些内容,请使用程序版本和标签中的Bintray版本字符串,例如"$programVersion-$programVcsTag"

关于gradle - Bintray VCS标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33875817/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com