user182944
user182944

Reputation: 8067

Maven Build in Eclipse without using Command prompt

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:

enter image description here

Kindly advise.

Upvotes: 2

Views: 172

Answers (2)

Elliott Frisch
Elliott Frisch

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

devOpsTools
devOpsTools

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

Related Questions