Reputation: 1482
I have an RCP application which works fine but problems occured once I tried to develop plugins for it.
What I did:
EDIT : Menu entries that I don't want:
How do I get ride of the plugin/eclispe IDE specific menu entries and the other eclispe specific information? Why are they appearing only when developing plugins for my rcp and not when developing the rcp itself?
Upvotes: 0
Views: 310
Reputation: 528
You should create a .product
file and export your RCP application instead of put them into your Eclipse Plugins folder and changing the initialization config.
Then you export your product and the result is your RCP application, that follows the same structure of Eclipse, but the plugins folder contains only the plugins you define in the dependencies of your product.
You should the following FAQs and tutorial to start with Products
Upvotes: 0