美文网首页
下载kotlin compiler embeddable jar

下载kotlin compiler embeddable jar

作者: neal秦 | 来源:发表于2021-02-07 13:25 被阅读0次
记录下载kotlin compiler embeddable jar资源过慢问题
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/')) {
                    remove repo
                }
            }
        }
        maven {
            url REPOSITORY_URL
}

相关文章

网友评论

      本文标题:下载kotlin compiler embeddable jar

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