I'm currently learning how to make some plugins for eclipse.
I first developed a plugin for the KNIME project . This project contains a plugin.xml and a MANIFEST.MF file:
(...)
Bundle-Activator: project1.MyNodePlugin
(...)
The second project is a "preferences panel" that was generated with an eclipse wizard. It also contains a MANIFEST.MF & a plugin.xml:
(...)
Bundle-Activator: project2.Activator
(...)
I want my project project1 (KNIME) to use some data from my preference panel.
How should I merge the two projects (MANIFEST.MF ?) ?
How can I get the preferences of the project2 from the project1 ?
Thanks