Search code examples
javaeclipseeclipse-plugineclipse-rcpbpmn

Add Eclipse plug in to Eclipse RCP App


I'm trying to add an Eclipse plug in (BPMN Modeler) to a Eclipse RCP App so I can have the model editing and viewing capabilities offered by that plug-in. I have read several tutorials but none explained how this can be achieved. Maybe you can point me to a better direction.

Thank you,


Solution

  • Well mechanically you can just include the plugin in your plugin manifest for your RCP application. Make sure you install the plugin into your Eclipse target platform and then just edit the manifest (right-click on your project PDE Tools -> Open Manifest) and add it. Then you will need to look at the plugin's extension points and see what is required to configure it. You can do this in the manifest as well. That should get you started.