gpt4 book ai didi

android - 使用 gradle-bintray-plugin 在 bintray 上发布

转载 作者:太空狗 更新时间:2023-10-29 13:19:48 26 4
gpt4 key购买 nike

我有一个 Android 库,我想在 bintray 上发布。

到目前为止一切顺利,我正在使用具有以下配置的 gradle-bintray-plugin 1.2:

bintray {
user = properties.getProperty("bintray.user")
key = properties.getProperty("bintray.apikey")

configurations = ['archives']
pkg {
repo = "android" // thats how my maven repository is called on bintray
name = "mylibrary"
websiteUrl = "https://somewebsite" // replaced this, since the project should not matter
issueTrackerUrl = 'some issuetracker url'
vcsUrl = "some repository"
licenses = ["Apache-2.0"]
publish = true
version {
// the 2 functions here, are building the version number
name = versionNameBuild() // i.e. 1.0.0-SomeName
vcsTag = versionName() // 1.0.0
gpg {
// keys are uploaded
sign = true
}
}
}
}

我遇到的第一个问题是,在我上传库后,版本号是“未指定的”。意思是文件上传成功了,但是名字是smth。像“mylibrary-unspecified.aar”。我发现我必须在 gradle 中额外指定项目版本号。

像这样:

project.version = "1.0.1"

在那之后,一切正常。现在我只剩下 2 个问题了:

我希望我的文件像这样上传:

$BINTRAYUSERNAME/$REPONAME/$PACKAGENAME/$VERSION/*.aar

但是他们实际上是这样上传到smth的:

$BINTRAYUSERNAME/$REPONAME/$PROJECT_FOLDERNAME_OF_ANDROID_STUDIO/$SUBDIRECTORY_OF_THE_LIBRARY/$VERSION/*.aar

我能以某种方式改变这个“路径”吗?重要吗?

这引出了我的下一个问题。如何指定 Maven 组类型?我的意思是它是一个 Maven 存储库,对吗?所以我应该能够设置它?这可能与我的第一个问题有关吗?

最佳答案

Can I change this "path" somehow? Does it matter?

是的,是的。一旦我使用组变量,这条路径就改变了:

group = "my.awesome.group"

这也解决了第二个问题。那么上传文件的路径是:

$BINTRAYUSERNAME/$REPONAME/$PACKAGENAME/$GROUPPATH/$VERSION/*.aar

我建议为 Android 库使用 example script .

关于android - 使用 gradle-bintray-plugin 在 bintray 上发布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30381719/

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