Created
March 15, 2023 16:40
-
-
Save chisaato/9b92f7206133a38850f1a6632e41f6a7 to your computer and use it in GitHub Desktop.
另一种版本,受 OpenAI 启发
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
allprojects { | |
repositories { | |
maven { | |
url = uri("https://maven.aliyun.com/repository/gradle-plugin") | |
} | |
// 中央仓库 | |
maven { | |
url = uri("https://maven.aliyun.com/repository/central") | |
} | |
// 中央仓库,但是腾讯云 | |
maven { | |
url = uri("http://mirrors.cloud.tencent.com/nexus/repository/maven-public/") | |
} | |
maven { | |
url = uri("https://maven.aliyun.com/repository/jcenter") | |
} | |
maven { | |
url = uri("https://maven.aliyun.com/repository/google") | |
} | |
maven { | |
url = uri("https://maven.aliyun.com/repository/spring") | |
} | |
maven { | |
url = uri("https://maven.aliyun.com/repository/spring-plugin") | |
} | |
maven { | |
url = uri("https://maven.aliyun.com/repository/grails-core") | |
} | |
maven { | |
url = uri("https://maven.aliyun.com/repository/apache-snapshots") | |
} | |
maven { | |
url = uri("https://lss233.littleservice.cn/repositories/minecraft") | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment