I've finished creating an eclipse plugin. testing it inside eclipse running another eclipse instance everything works fine. therefore I wanted to export it and install it in my 'main' eclipse.
I ran export -> plugin development -> deployable plugins and fragments -> chose my plugin and used directory (creating a jar file).
After exporting I copied the .jar file to my eclipse dropins folder and restarted.
but what worked like a charm running another eclipse instance from the run command inside eclipse itself doesn't work at all after installing my plugin.
I'm using
popup:org.eclipse.ui.popup.any?before=additions
from Manifest.xml
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
org.eclipse.core.resources,
org.eclipse.ui.ide,
org.eclipse.core.filesystem
extensions:
extension point="org.eclipse.ui.menus"
extension point="org.eclipse.ui.commands"
to create a popup menu entry inside Navigator/Project Explorer et cetera. If I right click anything now the whole popup menu is empty, sometimes it shows a few entries sometimes none at all. same goes for the file -> new menu or anything else. seems I'm killing the whole menu / popup bars. hope you're able to provide me with some help.
sorry for the long summary but thought I'd rather explain everything in detail. if you need further information please just tell me.