bintray に組織を作成しました。ファイルをリポジトリに公開しようとすると、gradle-bintray-pluginを使用して組織に属します。私は問題を抱えています:
HTTP/1.1 401 Unauthorized [message:This resource requires authentication]
ここに私のコードがありますbuild.gradle
:
apply plugin: 'com.jfrog.bintray'
publishing {
publications {
MyPublication(MavenPublication) {
groupId 'test.humbleadmin'
artifactId 'm-example'
artifact androidJar
version version
}
}
}
bintray {
user = 'my_bintray_username'
key = 'my_bintray_key'
publications = ['MyPublication']
pkg {
repo = 'repos_name'
name = 'pkage_name'
userOrg = 'my_org_name'
licenses = ['MIT']
labels = ['gear', 'gore', 'gorilla']
publicDownloadNumbers = true
attributes= [name: 'value'] //Optional package-level attributes
version {
name = '1.0'
desc = 'TestMaven Example 1.1.0 final'
vcsTag = '1.0'
attributes = ['gradle-plugin': 'com.use.less:com.use.less.gradle:gradle-useless-plugin']
}
}
}
私のコードの何が問題になっていますか? ありがとう。