IDEA configure maven detailed tutorial

A, maven download

Address  http://maven.apache.org/download.cgi

 After downloading extract to the appropriate path

Second, the environment variable configuration

This computer → Properties → Advanced → Environment Variables → System Settings → System variables New MAVEN_HOME

 Add% MAVEN_HOME% \ bin in the Path environment variable

 View maven's version, this environment variable configuration

 Three, IDEA configuration maven

Step 1: Configure maven local repository

 

Step two: Modify rely Download

 

<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配置

 

 

 

Guess you like

Origin www.cnblogs.com/my-program-life/p/12031842.html