We have around 5-6 Eclipse new project wizard plugins, when I run from my development environment it runs fine (ie from Eclipse SDK) but if I export it as a plugin jar files and drop it under plugins/dropins folder of newly downloaded eclipse, I am not able to see new wizards in new project wizard.
When I open Eclipse OSGi console and I tried this command:
ss
and plugins status I got as:
421 STARTING com.example.wizardOne_1.0.0
422 STARTING com.example.wizardTwo_1.0.0
and when I executed this command (to know reason why it hasn't started):
diag 421
I got output as:
reference:file:plugins/com.example.wizardOne_1.0.0 [421]
No unresolved constraints.
It means there is no unresolved constraints or other error, so shouldn't it be started automatically. I can understand Eclipse uses Lazy loading concept, but when I open New project wizard it should start that plugin right?
Can anyone help me how to make sure newly deployed plugins starts automatically? Is there any configuration should I do to achieve this?