Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to upgrade eclipse and keep all the installed plugins?

I found it tedious to reinstall all the plugin every time upgrade the eclipse.

like image 561
user910317 Avatar asked Aug 24 '11 18:08

user910317


People also ask

Where does Eclipse store plugins?

As far as I know, Eclipse stores its plugins in its installation directory ( eclipse ). They might reside in eclipse/plugins or eclipse/dropins . You can copy the whole eclipse directory from your old box.


1 Answers

This is the best option I've found so far. Dropins directories work, but they're a pain to maintain, because Eclipse wants to install new plug-ins in the Eclipse directory.

I. To transfer your list of update sites:

  1. Run your old Eclipse one last time
  2. Go to Window->Preferences->Install/Update->Available Software Sites
  3. Select all update sites (click on one, then Ctrl-A), click Export, save the file somewhere
  4. Run your new Eclipse, select your workspace
  5. Go to Window->Preferences->Install/Update->Available Software Sites
  6. Click Import, choose the file from step 3

II. To copy across your old plug-ins:

  1. In the new Eclipse, select File->Import->Install->From Existing Installation
  2. Select your old eclipse directory, eg ~/apps/eclipse-jee-indigo-SR1-linux-gtk-x86_64/eclipse/
  3. Select the plug-ins/features you want to install, click Finish
  4. When it finishes, you can archive/delete your old Eclipse directory
like image 106
seanf Avatar answered Sep 18 '22 17:09

seanf