背景:
项目中引入依赖时,很多依赖库都需要访问国外网站,同步的时候会面临依赖无法下载或者下载过慢的问题,这个时候可以在配置文件中设置默认仓库为阿里云,直接起飞,真香~
配置步骤:
1、在maven配置文件pom.xml中增加仓库配置:
<repositories>
<repository>
<id>aliyun-repos</id>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>aliyun-plugin</id>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
2、点击同步,直接起飞;