Is possible to access Maven (embedded) console in Eclipse like in shell (linux shell, windows cmd.exe) to run custom maven commands (mvn archetype:create.... etc) ? I'm using m2e, but can run Maven commands only by GUI.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can run custom maven commands directly from Eclipse by doing:
You'll need just some Maven plugin for Eclipse like m2e. |
|||
|
|
|
I highly recommend shell plugin for Eclipse: Wicked shell (http://www.wickedshell.net/) |
|||
|
Sadly I don't know about any Eclipse plugin to do that :( A long time ago (in the Maven 1 era) there was a Maven goal called "console" that allowed you to execute goals in a pre-loaded maven instance. But that feature was discontinued in Maven 2. For new versions of Maven (Maven 3), the folks at Sonatype made a Maven Shell which I think will do what you want: http://shell.sonatype.org/index.html |
|||
|
|