更改Maven软件源为阿里云源的方法详解
程序员文章站
2022-04-12 23:30:44
找到maven文件夹 –>conf–>setting.xml右键编辑,然后找到mirror更改为如下: ...
找到maven文件夹
–>conf–>setting.xml
右键编辑,然后找到mirror
更改为如下:
<mirrors> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>https://maven.aliyun.com/repository/central</url> <mirrorof>central</mirrorof> </mirror> </mirrors>
然后打开idea
点击file–>settings
在左上角搜索maven
更改右边的maven home directory为自己安装的maven(因为idea自带了一个maven,也可以不改)
更改setting.xml文件的路径为刚刚你改的setting.xml的路径
以此就配置好了maven
注意:每创建一个新的maven项目,这个设置都需要更改,idea默认使用自己的配置文件。
到此这篇关于更改maven软件源为阿里云源的文章就介绍到这了,更多相关更改maven为阿里云源内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!