美文网首页
gradle配置淘宝镜像

gradle配置淘宝镜像

作者: coderfl | 来源:发表于2020-05-26 22:30 被阅读0次
    1. C:\Users\Administrator\.gradle
    2. 创建文件init.gradle
    3. 添加内容
    allprojects{
        repositories {
            def ALIYUN_REPOSITORY_URL = 'http://maven.aliyun.com/nexus/content/groups/public'
            def ALIYUN_JCENTER_URL = 'http://maven.aliyun.com/nexus/content/repositories/jcenter'
            all { ArtifactRepository repo ->
                if(repo instanceof MavenArtifactRepository){
                    def url = repo.url.toString()
                    if (url.startsWith('https://repo1.maven.org/maven2')) {
                        project.logger.lifecycle "Repository ${repo.url} replaced by $ALIYUN_REPOSITORY_URL."
                        remove repo
                    }
                    if (url.startsWith('https://jcenter.bintray.com/')) {
                        project.logger.lifecycle "Repository ${repo.url} replaced by $ALIYUN_JCENTER_URL."
                        remove repo
                    }
                }
            }
            maven {
                url ALIYUN_REPOSITORY_URL
                url ALIYUN_JCENTER_URL
            }
        }
    }
    

    相关文章

      网友评论

          本文标题:gradle配置淘宝镜像

          本文链接:https://www.haomeiwen.com/subject/fumbahtx.html