vote up 3 vote down star

Hi,

In our Java project in Eclipse, we have several build configurations, as we have an engine that when run, builds installation jar for a specific projects according to the parameters it gets, so each build configuration run the same build with different parameters to build installation for a specific project.

Currently, I have to go to the Run Configuration drop-down button in the toolbar to start the engine, and I need to select the build configuration from the list in order to run (or debug) the engine with the required parameters.

I have configured Eclipse to run the last run execution if the button is run instead of selecting from the drop-down menu, but I would really like to have separate buttons in the toolbar for each build configuration (or for my favorite configurations), and even better, have a keyboard shortcut to run (or debug) a specific build configuration. Is that possible?

Thanks, splintor

flag

71% accept rate
For plugin development, the simplest way to grab some informations is still the eclipse help pages: help.eclipse.org/galileo/index.jsp?nav=/4 – VonC Sep 21 at 18:19

2 Answers

vote up 2 vote down

You could define a plugin with some launchShortcuts in it.

This thread is a good illustration.

But to actually bind it, you would need to define a command running that configuration, and bind that command to a key (like in this plugin.xml configuration file)

the shortcut definition of a launch configuration:

  <shortcut id="org.maven.ide.eclipse.pomFileAction"
            category="org.maven.ide.eclipse"
            class="org.maven.ide.eclipse.actions.ExecutePomAction"
            icon="icons/m2.gif"
            label="%m2.popup.pomFile.label"
            modes="run,debug">
     <contextualLaunch>
       <contextLabel label="%m2.popup.pomFile.label" mode="run"/>
       <contextLabel label="%m2.popup.pomFile.label" mode="debug"/>
       <enablement>
         <with variable="selection">
           <count value="1"/>
           <iterate>
             <and>
               <test property="org.maven.ide.eclipse.launchable"/>
               <adapt type="org.eclipse.core.runtime.IAdaptable"/>
             </and>
           </iterate>
         </with>
       </enablement>
   </contextualLaunch>
 </shortcut>

Then the command:

 <extension point="org.eclipse.ui.commands">
    <command id="org.maven.ide.eclipse.pomFileAction.run"
             categoryId="org.eclipse.debug.ui.category.run"
             name="%m2.shortcut.description.run"
             description="%m2.shortcut.description.run"/>
     ...
 </extension>

Then the key binding for a keyboard shortcut:

<extension point="org.eclipse.ui.bindings">
    <key sequence="M3+M2+X M"
         contextId="org.eclipse.ui.globalScope"
         commandId="org.maven.ide.eclipse.pomFileAction.run"
         schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
 </extension>
link|flag
Thanks VonC for the quick reply. I'm a plain Java developer, and never defined a plugin. Can you explain how do I do it? Thanks. – splintor Sep 21 at 18:09
OK, I installed the eclipse SDK and read some plugnis tutorial, and once I have time for it I'll get into writing this plugin. I just don't understand why it has to be so complicated to simply have a command to run a configuration. I guess I really need to add a wish to the eclipse team (or write it myself...) – splintor Sep 22 at 7:28
vote up 1 vote down check

I was able to do it using Practically Macro - see this thread.

link|flag
Interesting (+1). Could you detail this answer with some specific extracts from the thread you mention? – VonC Oct 4 at 9:46

Your Answer

Get an OpenID
or

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