Modify gradle central warehouse to speed up the jar package download speed

Open the file gradle project build.gradle
find repositories, commented mavenCentral (), using Ali cloud warehouse address

repositories {
//mavenCentral()
maven {
   url 'http://maven.aliyun.com/nexus/content/groups/public/'
}
}
Explain: This url is not allowed to directly access the browser, but does not affect the construction of the project.

Guess you like

Origin www.cnblogs.com/yuanchaoyong/p/11441202.html
Recommended