maven配置阿里云国内镜像源
程序员文章站
2022-03-21 08:27:44
...
1. File -> setting ,然后在搜索框中搜索maven,如下图所示
2. 在本地中打开红框圈起来的目录,如果目录下没有settings.xml,就自己新建一个,然后将如下内容粘贴到这个文件中。
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
https://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
</settings>
然后保存退出,之后IDEA会弹出来一个提示:import change,再点一下这个就可以了。