1.自己下载一个maven,(我也不知道为什么不用idea自带的)找到settings的文件,在自己下载的maven的conf下面apache-maven-3.8.1\conf
2.配置两个地方:
2.1
<localRepository>D:\tool\apache-maven-3.8.1\repository</localRepository>
2.2
<mirrors>
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>
</mirrors>
3.
把这里1换成自己下载的maven,2换成配置过的settings,后面的override勾上,3换成自己下载的maven里面的仓库
网友评论