-
https://bintray.com/signup/oss注册成为个人用户
-
在module的build.gradle中添加如下代码
上传插件:https://github.com/novoda/bintray-release
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.8.0'
}
}
//推荐放在module的gradle依赖文件的最后面
publish {
//不指明,默认是上传到maven
repoName = 'bintray上创建的仓库名'
userOrg = '注册的个人账号用户名'
//我们的组id 类比'com.github.bumptech.glide:glide:3.7.0' 中的
com.github.bumptech.glide 这一部分
groupId = 'packageName'
//原型id 类比'com.github.bumptech.glide:glide:3.7.0' 中的glide这一部分
artifactId = 'xxx'
//版本号
publishVersion = '1.0.0'
//描述,大致介绍自己的类库
desc = 'xxxx'
//网址,可以写自己的github项目页面等
website = 'https://github.com/xxx'
}
-
创建仓库 与 Package
1.png
4.上传
gradlew clean build bintrayUpload -PbintrayUser=bintray用户名 -PbintrayKey=xxxxx -PdryRun=false
apikey如下位置
5.png
网友评论