欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Could not create package HTTP/1.1 404 Not Found

程序员文章站 2022-06-24 20:34:21
...

Gradle打包并发布aar 使用http://www.jianshu.com/p/8f957421fc78这篇文章中的方法

然后报错

Could not create package 'joleyii/maven/Chrysanthemum': HTTP/1.1 404 Not Found

最终找到原因如果不设置userOrg也就是organization的话默认是你的名字为organization

我出现则个问题的原因是名字是joleyii但是organization是joelyii(两个都是我的常用名)

将下边pkg中增加userOrg ='joelyii'即可:


pkg {

repo ="maven"

name ="Chrysanthemum"

userOrg ='joelyii'

// #修改# //  在 jcenter 上面的项目名字

websiteUrl = siteUrl

vcsUrl = gitUrl

licenses = ["Apache-2.0"]

publish =true

}

找了一上午找到的,得出的经验教训是一定要看官方文档。。
详见:https://github.com/bintray/gradle-bintray-plugin#readme