I want to bind the mvn package command in eclipse. So I used the normal procedure to do this: Window->Preferences->General->Keys and then I filtered for Maven. The only commands that showed up were Run Maven Build, Run Maven Install, Run Maven Clean, etc. Run Maven package doesn't appear. It would really help to have a key binding for this command, thanks for your help.
feedback
|
|
I use shortcut keys for everything. The approach I use in this case (because binding to mvn package is not as easy as binding to mvn build) is to create run configurations for the goals I want:
Now, when you hit your "Maven Build" shortcut key, you will be prompted with a window to select your desired run configuration. This window only appears when you have more than one run configuration! From there, press DOWN, DOWN, ENTER and you'll choose your package goal! For me, "Maven Build" is bound to shift-alt-X M So to package my project, I press: shift-alt-X, M To install package my project, I press: shift-alt-X, M I hope that helps someone... | ||||
|
feedback
|