I am executing Eclipse headless (via java -jar org.eclipse.equinox.launcher_.jar) and I realized that when I invoke a class that is inside a plugin with an Activator defined as "Activate this plugin when one of its classes is loaded", the Activator.start(...) method is not invoked. I need this start method to be invoked, so options are: 1- Force to call the Activator by myself (it doesn't seem obvious) 2- Understand and solve the problem that causes the Activator.start method not to be invoked automatically.
Please, I appreciate any suggestions. Thanks.