Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [equinox-dev] Where to start framework?


is the -configuration part of this command line required?  (sorry, tuning into this thread late...)

Jeff



Thomas Watson <tjwatson@xxxxxxxxxx>
Sent by: equinox-dev-bounces@xxxxxxxxxxx

02/23/2007 10:43 AM

Please respond to
Equinox development mailing list <equinox-dev@xxxxxxxxxxx>

To
robert@xxxxxxxxxxxxxxxx, Equinox development mailing list <equinox-dev@xxxxxxxxxxx>
cc
Subject
Re: [equinox-dev] Where to start framework?






The quickstart guide needs to be updated for 3.3 M5.  You should use the org.eclipse.equinox.launcher to launch the framework in this case.  The following directory structure should work:


c:/eclipse/
               /configuration/config.ini

                /plugins/org.eclipse.equinox.launcher_xxx.jar

                /plugins/org.eclipse.osgi_xxx.jar

                /plugins/org.eclipse.update.configurator_xxx.jar

                /plugins/ ...


Then you should be able to launch with:


java -jar plugins/org.eclipse.equinox.launcher_xxx.jar -console -configuration configuration


You could also get the eclipse.exe from M5 and put that in the eclipse folder and launch using that:


eclipse -console -configuration configuration


Tom



"robert@xxxxxxxxxxxxxxxx" <robert@xxxxxxxxxxxxxxxx>
Sent by: equinox-dev-bounces@xxxxxxxxxxx

02/23/2007 02:26 AM

Please respond to
robert@xxxxxxxxxxxxxxxx; Please respond to
Equinox development mailing list <equinox-dev@xxxxxxxxxxx>

To
equinox-dev@xxxxxxxxxxx
cc
Subject
[equinox-dev] Where to start framework?







Hello,

I am new to equinox and started with the quickstart guide on eclipse-equinox-SDK-3.3M5.zip.  i tried the command:

java -jar org.eclipse.osgi_xxx.jar -console but added the plugins/ suffix to the jar file and it ran fine.

Then I tried using common and org.eclipse.update.configurator (again, from an 3.3M5 eclipse zip) by adding the osgi.bundle lines in the quickstart and puttin the org.eclipse.update.configurator_xxx.jar into the plugins dir.  i put the config.ini file into configuration.  my directory now looks like this:

c:/eclipse/
               /plugins
               /configuration/config.ini

i am in c:/eclipse and i started the framework like this:

java -jar plugins/org.eclipse.osgi_xx.jar -console -configuration configuration

it starts up and the 3 bundles (framework, common, configurator) are active but nothing else. and when i try the "bundles" command i don't see the additional bundles (logging, etc) installed.  i checked the log and i see this entry:

!ENTRY org.eclipse.update.configurator 2007-02-23 00:14:50.703
!MESSAGE C:\eclipse\plugins\plugins is not a valid plugins directory.

in the quickstart it says that the configurator will discver and install bundes in the plugins dir beside the equinox jar.    so, besides cding into the plugins dir, is there another way to run from the base dir and have it discover the plugins dir from there?  

thanks in advance for your help.


/r

_______________________________________________
equinox-dev mailing list
equinox-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/equinox-dev

_______________________________________________
equinox-dev mailing list
equinox-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/equinox-dev


Back to the top