Since you are using the Eclipse RCP application, most likely you are using SimpleConfigurator to determine your list of installed packages. Open the file App / configuration / org.eclipse.equinox.simpleconfigurator / bundles.info
This file contains a list of installed packages, their versions and their autostart. You will see a line like this:
ch.qos.logback.classic,0.9.27.v20110224-1110,plugins/ch.qos.logback.classic_0.9.27.v20110224-1110.jar,4,false
The different parts of the line are as follows:
- package id
- package version
- jar file name relative to installation location
- entry level (usually just 4)
- whether to run your package automatically, change it to true.
So, just add such a line to your bundles.info package, and you should be fine to go.
source share