概述
我在用intelliJ idea 写springboot 工程时,老是提示maven2 的地址下不下来工程。
解决:
在intellij Idea中: file->setting-> search "maven" -> 找到maven3 的默认目录: 我的是(D:Program Files (x86)JetBrainsIntelliJ IDEA 15.0.2pluginsmavenlibmaven3conf)
打开setting.xml ->找到<mirrors> </mirrors> 在中间加入:
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<id>uk</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://uk.maven.org/maven2/</url>
</mirror>
<mirror>
<id>nexus</id>
<name>internal nexus repository</name>
<!-- <url>http://192.168.1.100:8081/nexus/content/groups/public/</url>-->
<url>http://repo.maven.apache.org/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
保存,问题解决。
最后
以上就是魁梧月光为你收集整理的解决intelliJ idea maven 工程老是下不下来的问题的全部内容,希望文章能够帮你解决解决intelliJ idea maven 工程老是下不下来的问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复