I have to migrate from Eclipse 3.8 to 4.6. My problem is that in 4.6 (or earlier) Platform.getPlugin() got deprecated and will always return null. Using the Bundles in place of plugins doesn't help me beacuse in that case we will have to break our public API. Do you know if there is a way from the bundle to get the plugin ?
/**
* As the org.eclipse.core.runtime.compatibility plug-in has been removed in
* Eclipse 4.6 this method is not supported anymore.
*
*/
@Deprecated
public static Plugin getPlugin(String id) {
return null;
}