Reputation: 8067
I created the maven-spring project using the m2e plugin of eclipse. The project is working fine. I want to do a Maven build in Eclipse
the project without using any commands in command prompt i.e. using the eclipse IDE only. But I am not able to find the option for Maven build from Eclipse IDE.
Below are the options I am getting when I right click on my project:
Kindly advise.
Upvotes: 2
Views: 172
Reputation: 201409
Right-click on pom.xml
, then go to the "Run As" menu (not the "maven" menu). The various plug-in goals (and lifecycle targets) are documented here.
Upvotes: 1
Reputation: 190
you can follow this link, right click maven project -> run as -> maven build.. http://www.tutorialspoint.com/maven/maven_eclispe_ide.htm
Upvotes: 2