1,下载安装maven下载地址:http://maven.apache.org/download.cgi解压后打开maven的配置文件:E:\JavaJar\apache-maven-3.3.9\conf\settings.xml,E:\JavaJar\apache-maven-3.3.9\是我解压maven的目录
2,配置settings.xml文件
(1)首先配置本地仓库所在位置,本地仓库默认放在C盘的/users/(用户名)/.m2/repository目录下,如果需要修改,打开配置文件settings.xml文件,修改结点<localRepository></localRepository>,例如
(2)配置中央仓库镜像
为了提供更快的服务,可以在settings.xml中配置一个中央仓库的镜像,如阿里云镜像:
3,在eclipse中安装maven
Window-->maven-->Installations-->Add,然后选择maven的安装路径
然后再选择User Settings,配置settings.xml文件的所在位置,然后点击Update Settings
然后就可以创建maven项目了:new-->others-->maven project
在使用过maven后,在c:/users/(用户名)/.m2/repository目录下会生成一个.m2文件,我们可以把settings.xml文件放到到该目录下,这样settings.xml会随着maven的更新一起更新,不过要记得重新配置User Settings
4,在eclipse中安装m2eclipse插件
http://blog.csdn.net/yuqinying112/article/details/7198788