I want to add .jar
files for plugin from the Runtime tab of manifest file.开发者_开发百科 When I use the Add... button, I can see only sub-directories of the plugin project.
So if I want to add same .jar
file to more than one plugin project where should I store the .jar
files.
Normally you create a separate plugin for the jar file that exports the packages provided by the jar. Then the other plugins depend on this. That is how junit is handled by eclipse.
Look into creating a feature. That way the feature can be referenced by multiple plugin.
精彩评论