Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have seen on internet to run command like

mvn . . . . . something

but i am confused where to write this.

if in command prompt cmd.exe

i tried mvn.exe it says command not found

because maven is in STS

share|improve this question
Your question doesn't seem to have anything to do with Eclipse. Do you have Maven properly installed on your system? Have you tried just mvn? – Ates Goral Feb 7 '11 at 18:32
@Ates Goral from the title it seems like he wants to run it from within Eclipse – Nishant Feb 7 '11 at 18:36

1 Answer

up vote 1 down vote accepted

Hope you have m2eclipse installed.

Right click on project directory in Eclipse > Run As > Run Configurations... > Double click Maven Build > fill in name, select base directory of the project, provide goal (e.g. clean install), provide profile that you want to build (leave blank for default, else profile names space separated) > check options if any like (offline for -o etc) > click run

this will be available in your menu bar for future usage.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.