Android Studio上传项目到maven仓库
在项目中app下build.gradle中添加以下代码:
上传到本地maven库:
apply plugin: 'maven'
//本地仓库
uploadArchives{
repositories.mavenDeployer{
// 配置本地仓库路径,项目根目录下的repository目录中
repository(url: uri('../repository'))
pom.groupId = "com.android.mylibrary"// 唯一标识(通常为模块包名,也可以任意)
pom.artifactId = "MyLibrary" // 项目名称(通常为类库模块名称,也可以任意&#x