[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.technology.equinox] Equinox launcher does not start bundles

I have been following the quickstart guide (http://www.eclipse.org/equinox/documents/quickstart.php) up to the point where it advices to use launcher to kick off the equinox runtime. I am using equinox 3.5. My installation platform looks like this:

svmac-aradchenko:~/Desktop/equinox-springdm-blueprint-20090904 aradchenko$ find .
.
/configuration
/configuration/config.ini
/plugins
/plugins/mybundle-1.0-SNAPSHOT.jar
/plugins/org.eclipse.equinox.common_3.5.0.v20090520-1800.jar
/plugins/org.eclipse.equinox.launcher.cocoa.macosx_1.0.0.v20090519
/plugins/org.eclipse.equinox.launcher.cocoa.macosx_1.0.0.v20090519/about.html
/plugins/org.eclipse.equinox.launcher.cocoa.macosx_1.0.0.v20090519/eclipse_1206.so
/plugins/org.eclipse.equinox.launcher.cocoa.macosx_1.0.0.v20090519/launcher.cocoa.macosx.properties
/plugins/org.eclipse.equinox.launcher.cocoa.macosx_1.0.0.v20090519/META-INF
/plugins/org.eclipse.equinox.launcher.cocoa.macosx_1.0.0.v20090519/META-INF/eclipse.inf
/plugins/org.eclipse.equinox.launcher.cocoa.macosx_1.0.0.v20090519/META-INF/ECLIPSEF.RSA
/plugins/org.eclipse.equinox.launcher.cocoa.macosx_1.0.0.v20090519/META-INF/ECLIPSEF.SF
/plugins/org.eclipse.equinox.launcher.cocoa.macosx_1.0.0.v20090519/META-INF/MANIFEST.MF
/plugins/org.eclipse.equinox.launcher_1.0.200.v20090520.jar
/plugins/org.eclipse.osgi.services_3.2.0.v20090520-1800.jar
/plugins/org.eclipse.osgi.util_3.2.0.v20090520-1800.jar
/plugins/org.eclipse.osgi_3.5.0.v20090520.jar
/plugins/org.eclipse.update.configurator_3.3.0.v20090312.jar
/plugins/uber-2.0.0-m1-SNAPSHOT.jar


I execute a shell command (per manual):

svmac-aradchenko:~/Desktop/equinox-springdm-blueprint-20090904 aradchenko$ java -jar plugins/org.eclipse.equinox.launcher_1.0.200.v20090520.jar -console -clean

and when I check the short status, I see this:

osgi> ss

Framework is launched.

id State Bundle
0 ACTIVE org.eclipse.osgi_3.5.0.v20090520
1 ACTIVE org.eclipse.equinox.common_3.5.0.v20090520-1800
2 ACTIVE org.eclipse.update.configurator_3.3.0.v20090312
3 RESOLVED com.netflix.osgi.mybundle_1.0.0.SNAPSHOT
5 INSTALLED org.eclipse.equinox.launcher.cocoa.macosx_1.0.0.v20090519
6 RESOLVED org.eclipse.equinox.launcher_1.0.200.v20090520
7 RESOLVED org.eclipse.osgi.services_3.2.0.v20090520-1800
8 RESOLVED org.eclipse.osgi.util_3.2.0.v20090520-1800
11 RESOLVED org.springframework.osgi.blueprint.uber_2.0.0.m1


Most of the bundles in ./plugins are loaded, resolved, but not started.

Here is the config file:

svmac-aradchenko:~/Desktop/equinox-springdm-blueprint-20090904 aradchenko$ cat configuration/config.ini osgi.bundles=org.eclipse.equinox.common@2:start, org.eclipse.update.configurator@3:start
eclipse.ignoreApp=true
osgi.noShutdown=true


What is wrong here? According to manual, the launcher should have loaded and start any bundle in ./plugins directory.

Please advice!
-AR