修改idea自带maven的源

修改idea自带maven的源

  • 目录
  • 参考文章

目录

{IDEA安装目录}\plugins\maven\lib\maven3\conf\settings.xml
mirrors下添加,

<mirror>
	  <id>alimaven</id>
	  <mirrorOf>central</mirrorOf>
	  <name>aliyun maven</name>
	  <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>

更换为阿里云的源
修改idea自带maven的源_第1张图片
加载pom.xml速度飞起

参考文章

https://blog.csdn.net/qq_39438086/article/details/107515291

你可能感兴趣的:(环境搭建,编程开发)