Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Upgrading from Eclipse Galileo to Helios

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

Thanks

like image 634
DD. Avatar asked Aug 04 '10 19:08

DD.


1 Answers

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:

  • adding to your eclipse.ini a shared dropins directory reference
  • copying the extra plugins from your Galileo installation to that shared dropins one.
    See How to copy plugins between two eclipses

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
like image 84
VonC Avatar answered Oct 01 '22 16:10

VonC