码迷,mamicode.com
首页 > 编程语言 > 详细

maven 环境变量设置和Java maven工具配置 on windows 7

时间:2014-08-25 11:18:04      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:des   style   http   java   os   io   strong   for   ar   

How to install maven on windows 7

 

Maven is a build and dependency management tool for java based application development. Just like other java based development tools, it is not installed as windows service, rather it is configured using windows environment variables. These variables can be accessed from below location:

Control Panel > All Control Panel Items > System > Advanced system settings > Environment Variables

In this post, I will summarize the steps needed to install maven on windows 7 operating system.

Step 1) Install Java if not already done

To install java, download JDK installer and add/update the JAVA_HOME variable.

bubuko.com,布布扣

Step 2) Download Maven and extract it to desired location

Maven can be downloaded from this location. I have extracted it in location : D:Latest Setupapache-maven-3.0.4. You can choose your own.

Now, set the MAVEN_HOME variable just as you did for JAVA_HOME variable.

bubuko.com,布布扣

Step 3) Update PATH variable

 

To run maven from command prompt, this is necessary. Update the PATH variable with Maven’s installation bin directory.

bubuko.com,布布扣

Step 4) Test the installation

Maven installation is complete. Now lets test it from windows command prompt. Go to start menu and type cmd in application location search box. Press ENTER. A new command prompt will be opened. Type mvn -version in command prompt and hit ENTER.

bubuko.com,布布扣

This should show the version information of maven installed. If there is any error shown, cross-check all above steps.

Happy Learning !!

 

 

 

Adding M2_REPO classpath variable in eclipse IDE

 

We know that what is use maven and how to use it from command prompt. Maven dependencies can be read from eclipse IDE also which maven exposes through M2_REPO classpath variable which points to maven’s local repository. This class variable must be added to eclipse ‘s class path variable on build path before using maven’s dependencies. Lets see how to do this:

Step 1) Go to menu Windows > Preferences

bubuko.com,布布扣

Step 2) Navigate to Java > Build path > Classpath Variables

bubuko.com,布布扣

Step 3) Define new classpath variable M2_REPO and point it to local maven repository

bubuko.com,布布扣

Step 4) Verify that variable has been added

bubuko.com,布布扣

Happy Learning !!

maven 环境变量设置和Java maven工具配置 on windows 7

标签:des   style   http   java   os   io   strong   for   ar   

原文地址:http://www.cnblogs.com/jerryfchina/p/3934334.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!