Packaging one or two plugins as a standalone RCP application?
Posted
by Martin Cowie
on Stack Overflow
See other posts from Stack Overflow
or by Martin Cowie
Published on 2009-11-27T15:39:08Z
Indexed on
2010/04/11
19:03 UTC
Read the original article
Hit count: 346
eclipse-rcp
|rcp
I have a handful of Eclipse plugins that I maintain. They are proving useful enough that non Eclipse users have asked for them without the overhead of a full eclipse install.
I am certain this is possible, but uncertain how to make this possible. My attempts at creating a standalone RCP app and then including my plugins as dependencies have given me mixed results. More specifically, my perspective tries to instantiate a view from a plugin and fails (silently)...
public void createInitialLayout(IPageLayout layout) {
layout.addStandaloneView( "myPlugin.ID", false, IPageLayout.LEFT, 0.25f, editorArea);
}
... but as the same plugin implements a search extension, it does show up in the standard Eclipse search dialog.
Are there any resources that hardened Eclipse tars can point me to, that will help overcome this hurdle?
M.
© Stack Overflow or respective owner