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.

link|improve this question
Do you have "package" in your LifeCycle Mapping of your project, as described in stackoverflow.com/questions/5662437/…? – VonC Jul 20 '11 at 5:57
feedback

1 Answer

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:

  1. Select your project, choose run > Run Configurations...
  2. select the current maven run configuration for your project (under Maven Build > yourProjectName)
  3. Click the copy button on the upper left to copy the run config
  4. in the name section, give a meaningful name such as "yourProject--package"
    [optionally, rename your original config to something like "yourProject--install"]
  5. In the "Goals" section, type the goals you want such as "clean package"
  6. Choose "Apply" then "close"

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
down
down
enter

To install package my project, I press:

shift-alt-X, M
enter


I hope that helps someone...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.