1>官网下载apache-maven
下载地址: http://maven.apache.org/docs/3.0.3/release-notes.html
2>解压后配置环境变量
变量名:MAVEN_HOME
变量值:maven解压路径
Path变量值尾部加入:;%MAVEN_HOME%/bin;---前面注意分号
3>修改仓库位置
修改仓库地址,仓库用于存放我们项目所依赖的所有jar包。
新建文件夹repo用于存放JAR包,路径路径:D:/apache-maven/repo(任意)
打开…/apache-maven/conf/目录下的setting.xml文件,设置我们创建的仓库路径
<localRepository>D:/apache-maven/repo</localRepository>
4>根据pom.xml文件,更新项目所需JAR包
管理员身份运行cmd
输入mvn -v,显示maven 版本信息则环境变量配置正常
转到pom.xml所在目录下,及myeclipse中具体项目的工作空间
输入mvn complite ,下载JAR文件
输入mvn clean compile,Clean 告诉maven清理输入出目录target/,compile告诉maven编译项目主代码。
输入mvn eclipse:eclipse,将JAR文件转换成eclipse可用的格式(生成JAR包)
5>myeclipse配置maven环境
Windows -> PReferences -> Maven4MyEclipse-> Installations,配置maven解压的根目录
Windows -> Preferences -> Maven4MyEclipse->UserSettings,配置maven解压后conf下setting.xml文件的位置
重新build项目,项目会自动根据pom.xml文件中配置下载所需的jar包到setting.xml文件中配置的仓库位置中。
右键->Properties->java Build Path ->Libraries ,添加Maven Dependencies到Libraries中
Windows->Preferences->Maven4MyEclipse,勾选掉Download repository index updates on startup,取消maven自动的下载更新,提高打开eclipse的速度
转载地址:http://blog.csdn.net/QQ_37556626/article/details/59109707
新闻热点
疑难解答