[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.newcomer] Setting up execution order of plugins on startup

Hi,

I have 2 plugins (say plugin1 nd plugin2) for Eclipse that has extension points for org.eclipse.ui.startup and implements IStartup. Now when I start my eclipse both of these plugins gets loaded and do whatever I have implemented in the earlyStartup() method. I observed that sometimes implementation of plugin1 happens before the implementation of plugin2 is triggered and sometimes the order is reversed.

So, my question is how can I set the execution/loading of plugins order so that every time plugin1 gets loaded first rather than plugin2?

Thanks in advance.