我正在尝试从android studio上传一个android库模块, 然后是这个博客:https://inthecheesefactory.com/blog/how-to-upload-library-to-jcenter-maven-central-as-dependency/en
(1)
./ gradlew install
结果: - 建立成功
(2)
./ gradlew build bintrayUpload
结果: - 低于错误 -
失败:构建因异常而失败。
无法创建版本'1.0.0':HTTP / 1.1 401 Unauthorized [消息:此资源需要身份验证]
我检查了很多次,确定我的用户名和apikey是正确的。 (在用户名中我使用组织名称而不是bintray用户名,因为我的存储库是在组织下创建的)。 如果有人有想法,我会很感激帮助:)
答案 0 :(得分:12)
在Bintray中,您的用户名必须是您的用户帐户的用户名,而不是组织。 如果您是回购的所有者,则权限机制将允许该操作。
在用户名中我正在使用组织名称
一些文档链接:
https://github.com/bintray/gradle-bintray-plugin#readme
https://bintray.com/docs/usermanual/formats/formats_mavenrepositories.html#_working_with_gradle
修改强> 确保您使用的是userOrg参数,因为您的repo位于组织主题下,而不是在用户下。
这是一个有效的build.gradle:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
}
}
plugins {
id "com.jfrog.bintray" version "1.7"
}
apply plugin: 'com.jfrog.bintray'
apply plugin: 'java'
bintray {
user = 'myuserusername'
key = '**********'
pkg {
repo = 'gradlerepo'
name = 'gradlepackage'
userOrg = 'myorgname'
version {
name = '1.0-Final'
}
}
}
答案 1 :(得分:0)
我想在@gba的答案this
中添加更多内容应该直接在项目根目录的local.properties文件中包含它们而不是直接包含Bintray用户名和apikey。默认情况下,local.properties文件被添加到.gitignore中,因此不会与其他文件一起上传到githup中。它有助于确保用户名和apikey的安全。
bintray.user=<your bintray username>
bintray.apikey=<your bintray apikey>
然后在模块gradle文件中添加:
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
bintray {
user = properties.getProperty("bintray.user")
key = properties.getProperty("bintray.apikey")
configurations = ['archives']
pkg {
repo = "maven"
name = "<Your library name>"
websiteUrl = <your siteUrl>
vcsUrl = gitUrl
licenses = ["Apache-2.0"]
publish = true
}
}
参考:here