eclipse安装及配置maven(包括maven本地仓库修改、镜像配置)

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-2 16:28   1250   0

这篇博客献给我自己......

献给换电脑的我自己......

鉴于本人水平太臭,忘性太大,每次配置环境都得百度,以借鉴各路大神的经验,于是,闲来无事的我,写下这篇回忆录......

一、下载maven并安装

1、官网下载maven

http://maven.apache.org/download.cgi(注意:得选择有Binary

2、安装maven

解压压缩包,配置系统环境变量:本地磁盘->属性->高级系统设置->环境变量(系统变量

(1) 新建变量(我安装在F盘)

(2) 点击变量path,增加变量值 ;%M2_HOME%\bin;

好啦,运行cmd,输入mvn -v,如果显示maven的版本,那就说明配置成功;如果没有,emmmm,那么右转自行百度。

二、maven本地仓库修改(如果你就想放在c盘,可以跳过此项操作)

1、新建本地仓库

系统默认的本地仓库一般在c盘下users中的.m2.文件夹中,但是,一般情况下,我不会把东西放在c盘。具体操作如下:选择新的本地仓库的位置,以我自己的为例:E盘下新建文件夹Maven,其下新建repo文件夹作为本地仓库,并从maven安装目录(我的在F盘)下的conf文件夹中复制settings.xml文件到E盘下的Maven文件中,如下图所示:

2、修改settings.xml

(1)修改本地仓库中的settings.xml

在xml文件中增加 <localRepository>刚刚新建本地仓库的位置</localRepository>

(2)修改安装目录中的setting.xml

与上面的操作相同,参考上面的操作

三、maven配置镜像

1、在安装目录下的settings.xml中的<mirrors></mirrors>中增加代码段

  <mirror>
      <id>nexus-aliyun</id>
      <mirrorOf>central</mirrorOf>
      <name>Nexus aliyun</name>
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
    </mirror>
    <mirror>
      <id>nexus-aliyun-thirdparty</id>
      <mirrorOf>thirdparty</mirrorOf>
      <name>Nexus aliyun thirdparty</name>
      <url>http://maven.aliyun.com/nexus/content/repositories/thirdparty/</url>
    </mirror>

2、在安装目录下的settings.xml中的<profiles></profiles>中增加代码段

   <profile>
      <id>jdk-1.4</id>
      <activation>
        <jdk>1.4</jdk>
      </activation>
      <repositories>
        <repository>
          <id>nexus</id>
          <name>local private nexus</name>
          <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
          <releases>
            <enabled>true</enabled>
          </releases>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
              <id>nexus</id>
              <name>local private nexus</name>
              <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
              <releases>
                <enabled>true</enabled>
              </releases>
              <snapshots>
                <enabled>false</enabled>
              </snapshots>
        </pluginRepository>
      </pluginRepositories>
    </profile>

四、eclipse配置maven

1、window->preferences->maven->installations

点击add,添加maven的安装目录

2、window->preferences->maven->user settings

在global settings下选择maven的安装目录,点击update settings ,然后apply就可以了。

五、撒花.gif

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP