eclipse配置maven
这篇博客献给我自己......
献给换电脑的我自己......
鉴于本人水平太臭,忘性太大,每次配置环境都得百度,以借鉴各路大神的经验,于是,闲来无事的我,写下这篇回忆录......
一、下载maven并安装
1、官网下载maven
http://maven.apache.org/download.cgi(注意:得选择有Binary )
2、安装maven
解压压缩包,配置系统环境变量:本地磁盘->属性->高级系统设置->环境变量(系统变量)
(1) 新建变量
(2) 点击变量path,增加变量值 ;%M2_HOME%\bin;
好啦,运行cmd,输入mvn -v,如果显示maven的版本,那就说明配置成功;如果没有,emmmm,那么右转自行百度。
二、maven本地仓库修改
1、新建本地仓库
默认本地仓库一般在c盘下users中的.m2.文件夹中,但是,一般情况下,我不会把东西放在c盘。具体操作如下:选择新的本地仓库的位置,以我自己的为例:E盘下新建文件夹Maven,其下新建repository文件夹作为本地仓库,并到maven安装目录下的conf文件夹中复制settings.xml文件到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
上一篇: 网络少年网络成瘾的原因有哪些
下一篇: eclipse中配置maven
推荐阅读
-
JHipster技术栈定制 - JHipster Registry消息总线配置
-
php Apache 配置后访问出现Bad Request (400)
-
TortoiseGit之配置密钥
-
windows2008下配置iis+mysql+phpmyadmin运行phpmyadmin提示异常
-
Django CKEdirtor配置(图片上传,粘贴,文件上传)
-
TortoiseGit之配置密钥
-
PHP开发Apache服务器配置_PHP
-
首次通过eclipse运行php代码遇到些有关问题,各位帮忙啊多谢
-
apache配置 php中没有php5apache2
-
Windows7下PHP开发环境安装配置图文方法_PHP教程