I m doing a eclipse plugin project to create an IDE for a particular language using java.
I have almost completed the IDE,but when i created the setup file for that using the “export the eclipse product” option in the eclipse the things of eclipse such as menu items,toolbar items,some views are also present in my IDE which is not necessary for the IDE for that particular Language.How to remove these things from my IDE and keep only the items which i have created.
How shall i do this?
Can anyone help me in doing this?
You have defined which plugins should be in your product. See your
.productfile in theDependenciessection. You should try to delete all plugins and just add your own one. Then disableInclude optional dependenciesand clickAdd required Plug-ins. Are there now less Plug-Ins than before?Maybe this link is interesting for you: https://stackoverflow.com/a/4057122/714965