从 Maven 转到 Gradle
在项目根目录下运行 gradle init
即可直接转换成 Gradle 项目,工程和子模块下会有 build.gradle 等文件
设置国内镜像
编辑 ~/.gradle/init.gradle
(Windows 路径:%HomePath%\.gradle\init.gradle
):
allprojects{
repositories {
def REPOSITORY_URL = 'http://maven.aliyun.com/nexus/content/groups/public'
all { ArtifactRepository repo ->
if(repo instanceof MavenArtifactRepository){
def url = repo.url.toString()
if (url.startsWith('https://repo1.maven.org/maven2') || url.startsWith('https://jcenter.bintray.com/')) {
project.logger.lifecycle "Repository ${repo.url} replaced by $REPOSITORY_URL."
remove repo
}
}
}
maven {
url REPOSITORY_URL
}
}
}