Reputation: 901
I am new to this maven concepts ,I read some theoretical articles about maven ,so next is I want learn it by practicing some examples in Eclipse , I googled for step to set-up maven in eclipse ,but I didnt get correct approach for this,,, It would be great if some one guide me in this.. Thank u
Upvotes: 6
Views: 21939
Reputation: 4878
help -> eclipse marketplace -> search for m2e and install it
After this you will get different options like converting one project to maven project or creating a new maven projecct.
Upvotes: 0
Reputation: 8264
Here are step-by-step instructions for installing/integrating Maven with Eclipse, up to date as of August 2013.
(Note: the latest version of Eclipse is Kepler, which already has Maven installed. If you are using Kepler, verify that you have it installed by going to Help => About Eclipse, and then clicking on Installation Details).
1. Go to Help => Eclipse Marketplace. Search for Maven, and select Maven Integration for Eclipse. Click Install.
2. Verify all three boxes are checked, then click Confirm.
3. When you're done, restart Eclipse.
Upvotes: 4
Reputation: 55856
Watch the video tutorial on Eclipse m2e website. The basic steps are:
http://download.eclipse.org/technology/m2e/releases
) into the field named "Work with:" and press Enter. Pressing Enter should cause Eclipse to update list of available plugins and components.Upvotes: 7
Reputation: 2335
You need to install Maven plugin for eclipse.
This article shows how to install maven http://www.roseindia.net/maven2/maven_2_eclipse_plugin.shtml
After that you can setup maven project by right clicking on the project.
Upvotes: 2