Currently only preconfigured bundles are marked with start flag in the config.ini. I neede to mark some custom plugins (webconsole and jetty) as autostarted too. I extended the gradle script configuration with an autostartedBundles property:
Maybe the definition of the default ones (org.eclipse.core.runtime, jersey-core) could be extracted to RunExtension and EquinoxAppProductsExtension, but quite frankly I'm not sure if its the right place.
Currently only preconfigured bundles are marked with
start
flag in theconfig.ini
. I neede to mark some custom plugins (webconsole and jetty) as autostarted too. I extended the gradle script configuration with anautostartedBundles
property:Maybe the definition of the default ones (
org.eclipse.core.runtime
,jersey-core
) could be extracted toRunExtension
andEquinoxAppProductsExtension
, but quite frankly I'm not sure if its the right place.