maven 安装的过程

介绍什么的自己去百度。。。

1.下载win 安装包

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

2.解压安装

1、复制 安装路径到bin目录 

2、找到系统path 

3、新建path 

4、验证


1.复制路径
2.找到系统path


3.新建,把复制目录放进去

验证:cmd  窗口输入: mvn -v             达到以下效果


成功效果图

以上说明maven安装成功。。。

配置settings

新建仓库   最好和maven同级,,,因为为了方便以后好找


仓库文件夹

          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">

   

   

    E:\java\maven\maven-rep

   

   

   

   

       

   

   

   

       

   

   

   

       

       

   

   

   

       

       

            alimaven-central

            central

            aliyun maven

            http://maven.aliyun.com/nexus/content/repositories/central/

       

       

            jboss-public-repository-group

            central

            JBoss Public Repository Group

            http://repository.jboss.org/nexus/content/groups/public

       

       

   

   

   

       

       

            jdk18

           

                1.8

                true

           

           

                1.8

                1.8

                1.8

           

       

       

   

   


上面记得把我的仓库地址换成自己的。。。


最后就是idea中的maven配置

1、点击idea中settings。。这是个idea的配置项

2、找到maven配置

3、设置好settings路径


点击入口settings


看左边,maven配置位置。看右边只改后三行,你懂的


至此结束。。。

你可能感兴趣的:(maven 安装的过程)