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

AndroidStudio项目组件化maven上传gradle-module aar上传

程序员文章站 2022-05-22 20:57:13
...

apply plugin: 'maven'

//打包main目录下代码和资源的 task
task androidSourcesJar(type: Jar) {
    classifier = 'sources'
    from android.sourceSets.main.java.srcDirs
}

//配置需要上传到maven仓库的文件
artifacts {
    archives androidSourcesJar
}

//上传到Maven仓库的task
uploadArchives {
    repositories {
        mavenDeployer {
            //指定maven仓库url
            repository(url: "http://172.16.21.249:8890/repository/maven-releases/") {
                //nexus登录默认用户名和密码
                authentication(userName: "seven", password: "123456")
            }
            pom.groupId = "com.chope.components"// 唯一标识(通常为模块包名,也可以任意)
            pom.artifactId = "testmodule" // 项目名称(通常为类库模块名称,也可以任意)
            pom.version = "1.1.0"  // 版本号
        }
    }
}

需要注意的事,mudle当前为library或者application对当前输出upload的内容是有影响的。
换句话说,在组件化项目中单独运行组件和继承运行组件,要判断好再执行task。

aar的资源比较丰富。基本上能打出aar包,模块的内容都会有了。

相关标签: gradle maven