Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Easy way to copy old plugins into new install of eclipse

Is there an easy way to get a list of the plugins from an old version of Eclipse into the latest version. I have my current version with all the plugins I want. Now I want to upgrade to the nice shiny and new version but I need to make sure all my current list of plugins work. I would prefer to have to hunt and peck to install plugins in the latest version. I would think there would be a file in the old installation I could just copy into the new installation and tell eclipse install all these plugins if compatible.

Thanks

like image 424
Clutch Avatar asked Jul 11 '12 17:07

Clutch


People also ask

How do I extract a plugin from Eclipse?

You can export the list of the features and plugins by going to File->Export->Install.

Where are Eclipse plugins stored?

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

If your old version is at least 3.7, then you can do this:

  • Use File -> Export -> Install -> Installed software items to file in your old installation to create a file containing the currently installed features.
  • Use File -> Import -> Install -> Software items from file in your new installation. Point it to the file from above and make sure to check "Install latest versions".
like image 101
Bananeweizen Avatar answered Sep 26 '22 19:09

Bananeweizen