美文网首页
android打包lib成为aar,并且推到远端maven

android打包lib成为aar,并且推到远端maven

作者: 带带太师兄 | 来源:发表于2018-08-01 09:16 被阅读0次

    1.先在主项目的build.gradle 添加maven路径
    allprojects {
        repositories {
            google()
            jcenter()
            maven{ url'http://192.168.2.13:8081/repository/android-snapshots/'}}
    }

    2.在子项目build.gradle顶部引入maven插件
    applyplugin:'maven'

    3.子项目添加task

    uploadArchives {
        repositories.mavenDeployer{
        repository(url:"http://192.168.2.13:8081/repository/android-snapshots/")
    {
    authentication(userName:"admin",password:"admin123")
    }
    pom.version  ="1.6.1-SNAPSHOT"
            pom.artifactId ="chatui" 
            pom.groupId ="com.medtap.chatutil"
            pom.name ="chatui"
            pom.packaging ="aar"
       }
    }}

    4.引入aar

    compile'com.medtap.chatutil:chatui:1.6.1-SNAPSHOT'

    相关文章

      网友评论

          本文标题:android打包lib成为aar,并且推到远端maven

          本文链接:https://www.haomeiwen.com/subject/gwklvftx.html