rcp: Fix error "Could not resolve module: org.eclipse.equinox.ds"
authorMarc-Andre Laperle <marc-andre.laperle@ericsson.com>
Tue, 22 Sep 2015 18:38:37 +0000 (14:38 -0400)
committerMarc-Andre Laperle <marc-andre.laperle@ericsson.com>
Wed, 23 Sep 2015 15:29:24 +0000 (11:29 -0400)
org.eclipse.equinox.event needs to be auto-started.
It was also necessary to tweak the start levels for this to work.
This was inspired by the platform's sdk.product file. See
http://git.eclipse.org/c/platform/eclipse.platform.releng.aggregator.git/tree/eclipse.platform.releng.tychoeclipsebuilder/sdk/sdk.product

Change-Id: Ie7e6cc7f5ba5d4fb35a7ae82d02d244bcfdba20e
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/56457
Reviewed-by: Hudson CI
Reviewed-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
Tested-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
rcp/org.eclipse.tracecompass.rcp.product/tracing.product

index 11efad67a2beb5fd615bf1979862bdcc03e06d75..23ff85511bcbdba9bcd167394e1eecc5fce502e1 100644 (file)
@@ -224,9 +224,9 @@ Java and all Java-based trademarks are trademarks of Oracle Corporation in the U
    <configurations>
       <plugin id="org.eclipse.core.runtime" autoStart="true" startLevel="4" />
       <plugin id="org.eclipse.equinox.common" autoStart="true" startLevel="2" />
-      <plugin id="org.eclipse.equinox.ds" autoStart="true" startLevel="1" />
+      <plugin id="org.eclipse.equinox.ds" autoStart="true" startLevel="2" />
+      <plugin id="org.eclipse.equinox.event" autoStart="true" startLevel="2" />
       <plugin id="org.eclipse.equinox.simpleconfigurator" autoStart="true" startLevel="1" />
-      <plugin id="org.eclipse.osgi" autoStart="true" startLevel="-1" />
       <plugin id="org.eclipse.tracecompass.rcp.ui" autoStart="false" startLevel="5" />
       <plugin id="org.eclipse.update.configurator" autoStart="true" startLevel="3" />
    </configurations>
This page took 0.026219 seconds and 5 git commands to generate.