views:

539

answers:

2

Whats the best way to upgrade from Galileo to Helios whilst still preserving my settings and plugins?

Thanks

+2  A: 

The surest path to upgrade is to make a "parallel" installation: an Helios Eclipse beside the Galileo one you already have.

Regarding your settings, you just need to reference the same workspace.
In your eclipse.ini, indicate where your workspace is, and you will get back all your projects, workspaces and perspectives just as you left them.

Plugins are trickier, and I would recommend:

In your shared dropins path, you will have:

   my-eclipse-galileo-plugins
     eclipse
       features
       plugins

and you will copy all extra plugins and features added since the installation of your Eclipse Galileo instance:

   /path/to/galileo
     eclipse
       features
       plugins
VonC
A: 

Note, to upgrade from Galileo to Helios (3.6), you first need to add the Helios software repository as follows:

  1. Window > Preferences > Install/Update > Available Software Sites
  2. Click 'Add'
  3. Enter http://download.eclipse.org/releases/helios
  4. Click 'Ok'

From: wiki.eclipse.org/FAQ_How_do_I_upgrade_Eclipse%3F#Eclipse_Galileo_.283.5.29_and_beyond

Jubal Harshaw