在build.gradle下加入以上代码就完成了加入阿里云maven的功能。之后想使用什么插件可以直接使用依赖。速度超级快
allprojects {
repositories {
//使用阿里云maven镜像,下载插件速度极快
maven {
url"http://maven.aliyun.com/nexus/content/groups/public/"
}
// maven {
// url 'http://maven.aliyun.com/nexus/content/repositories/releases/'
// }
}
}
这样就可以快速的添加一个想用的插件