IDEA配置maven詳細教程

1、maven下載

地址 http://maven.apache.org/download.cgi

 下載後解壓到相應的路徑

2、環境變量配置

此電腦→屬性→高級系統設置→環境變量→系統變量→新建 MAVEN_HOME

 在Path環境變量下添加%MAVEN_HOME%\bin

 查看maven的版本,到此環境變量配置完成

 3、IDEA配置maven

第一步:配置maven本地倉庫

 

第二步:修改依賴下載地址

 

<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>ui</id> <mirrorOf>central</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://uk.maven.org/maven2/</url> </mirror> <mirror> <id>jboss-public-repository-group</id> <mirrorOf>central</mirrorOf> <name>JBoss Public Repository Group</name> <url>http://repository.jboss.org/nexus/content/groups/public</url> </mirror> <mirror> <id>repo2</id> <mirrorOf>central</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://repo2.maven.org/maven2/</url> </mirror> <mirror> <id>OSChina</id> <name>OSChina Central</name> <url>http://maven.oschina.net/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> <mirror> <id>nexus-osc-thirdparty</id> <mirrorOf>thirdparty</mirrorOf> <name>Nexus osc thirdparty</name> <url>http://maven.oschina.net/content/repositories/thirdparty/</url> </mirror> </mirrors>

mirrors

 

 

 第三步:修改IDEA中的maven配置

相關文章
相關標籤/搜索