IntelliJ IDEA添加MAVEN插件
Posted laojianglj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IntelliJ IDEA添加MAVEN插件相关的知识,希望对你有一定的参考价值。
打开 File → Other Settings → Default Settings
修改MAVEN默认的地址,重新选择配置文件
☆特别注意,在配置的时候一定要选择 Default Settings要不然每次新建其他工程都会默认使用IDEA自带的MAVEN
修改MAVEN安装路径下conf文件中的settion.xml文件
1.设置默认仓库地址(我这里设置的是本地D:\JAVATools\MvnRepo)
2.设置MAVEN的远程仓库路径,默认的地址由于国内特殊原因比较慢,我一般只用了第一个阿里的远程仓库
<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>CN</id>
<name>OSChina Central</name>
<url>http://maven.oschina.net/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<id>nexus</id>
<name>internal nexus repository</name>
<url>http://repo.maven.apache.org/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
修改完setting.xml文件后将setting.xml文件复制一份到你刚刚定义的默认仓库地址中
以上是关于IntelliJ IDEA添加MAVEN插件的主要内容,如果未能解决你的问题,请参考以下文章
如何在IntelliJ IDEA上 添加GIT和Maven,mybatis插件
如何在IntelliJ IDEA上 添加GIT和Maven,mybatis插件
Intellij IDEA在maven项目中添加外部Jar包运行
Intellij IDEA Maven 插件 - 管理依赖项