1、首先下载maven http://maven.apache.org/download.cgi
apache-maven-3.3.3-bin.tar.gz
2、将apache-maven-3.3.3-bin.tar.gz 解压到 /usr/local/apache-maven-3.3.3
3、修改配置文件profile
vim /etc/profile
在最后面追加
export M2_HOME=/usr/local/apache-maven-3.3.3 export PATH=$PATH:$M2_HOME/bin
保存退出
使用文件立即生效
source /etc/profile
4、查看是否安装成功
mvn -version
如果出现版本信息说明安装成功
5、下载最新eclipse 里面已集成maven插件
6、配置eclipse
windows->preferences->maven->installlations 选择Add 在浏览文件窗口中指定我们刚刚安装的maven目录也就是(/usr/local/apache-maven-3.3.3/)
7、接下来配置maven 的setting.xml文件
windows->preferences->maven->update settings
将user settings 指向我们上面安装的maven路径下面的settings.xml这个文件 “/usr/local/apache-maven-3.3.2/conf/settings.xml”
配置完成后 apply
8、打开eclipse新建maven项目 建立完成后在项目上右键选择maven->update project 这时可以会出现错误,再打开项目里面的pom.xml 增加如下节点
<dependencies>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
</dependency>
</dependencies>
保存,在pom.xml上右键选择run as ->maven install 这时eclipse开始下载maven库下载完成后就ok