Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[equinox-dev] Autostarting required plugins

How do I autostart the plugins on which my plugin depends. Here is the scenario.

Plugin C requires plugin A and plugin B.

Plugin C uses services registered by both the plugins. But when I try to use the services in plugin C, I get an error. This is because plugin A and B have not been started. I tried doing it this way and it worked.

osgi.bundleclipse.product=A.pro
es=A,B@2:start,C@2:start,org.eclipse.core.runtime@2:start
osgi.bundles.defaultStartLevel=4

But I am looking for a method which would autostart all my dependencies when I start the plugin C. Any ideas how can this be done?

Thanks
Abhishek


Back to the top