此项目基于Github Novoda修改而来。 改进点:
在publish内新增archivesPath参数,可将指定的jar包或者aar包放在此目录下,会指定上传此目录内的压缩包。
这样我们便可以很容易上传自己生成的jar,比如混淆过的。
1.根目录下的build.gradle中加入上传开源库的依赖:
classpath 'com.aaron.gradle:bintray-release:1.3.7'
2.library的module中加入 apply
apply plugin: 'com.aaron.gradle.bintray-release'//必须写在第一行 //其他插件
利用 publish
闭包完成相应设置:
publish { userOrg = 'novoda' groupId = 'com.novoda' artifactId = 'bintray-release' publishVersion = '0.3.4' archivesPath = '../build/outputs' //指定将要上传的压缩包路径,如果不写则默认上传系统生成的jar和aar archivesName = 'bintray-release' //指定将要上传的压缩包所含的关键字,如果不写,默认过滤artifactId desc = 'Oh hi, this is a nice description for a project, right?' website = 'https://github.com/snailflying/bintray-release' }
最后,利用 task bintrayUpload
完成上传 (确保已提前在指定位置生成了相应jar包!):
$ ./gradlew bintrayUpload -PbintrayUser=BINTRAY_USERNAME -PbintrayKey=BINTRAY_KEY -PdryRun=false
1.如果你开源库中有中文注释在module的build.gradle加入格式
allprojects { repositories { jcenter() } //加上这些 tasks.withType(Javadoc) { options{ encoding "UTF-8" charSet 'UTF-8' links "http://docs.oracle.com/javase/7/docs/api" } } }
根目录下的build.gradle中增加
tasks.getByPath(":library模块:releaseAndroidJavadocs").enabled = false
2.忽略错误信息:module的build.gradle
android { lintOptions { abortOnError false } }