- Android studio 新建java module
- 将aar文件放置到lib文件夹中 例如xxx.aar文件
- build文件中代码如下
apply plugin: 'maven'
def coreAarFile = file('libs/xxx.aar')
artifacts {
archives coreAarFile
}
uploadArchives {
repositories {
mavenDeployer {
repository(url: "maven库地址") {
authentication(userName: 用户名, password: 密码)
}
pom.version = "版本号"
pom.artifactId = "artifactId"
pom.groupId = "分组"
}
}
}
- task 任务 上传
网友评论