Bintray代码上传

gradlew clean build bintrayUpload -PbintrayUser=zhengliang1995 -PbintrayKey=xxxxxxxxxxxx -PdryRun=false



GBK

各种警告忽略

allprojects {
    repositories {
        maven { url 'https://5565.bintray.com/Maven' }
        jcenter()
    }
    tasks.withType(Javadoc) {  //设置文档编码
        options {
            encoding "UTF-8"
            charSet 'UTF-8'
            links "http://docs.oracle.com/javase/7/docs/api"

        }
        failOnError false
    }

}

猜你喜欢

转载自blog.csdn.net/weixin_42037424/article/details/80277295