Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A new version of Eclipse just came out. Is there anything I can do to avoid having to manually hunt down my plugins again?

Tags:

Galileo came out the other day, and even though plugins under Eclipse are, IMO, just a little bit easier to deal with than Netbeans, it would still be really awesome if there was a simple way for me to upgrade to the new version (and take my plugins with me).

Any tips?

like image 832
rgcb Avatar asked Jun 29 '09 18:06

rgcb


2 Answers

Not directly, AFAIK.

Here is the closest thing I came up with, under the assumption that my old Eclipse is recent enough so that it uses a similar form of update manager (P2).

In the old Eclipse, go to preferences->Install/Update->Available Software Sites. Pick the ones that are not built in (you will see a name for them, or at least a non-eclipse URL). You can select the ones you want and then export them to XML.

Now go to the new Eclipse, go to the same preference window, and import the update sites from the XML. Now, when you install new software, you should see your update sites although you will probably still have to manually pick options for plugins that offer multiple downloads.

Important caveat: Some plugin vendors actually offer different update sites for different Eclipse versions, so you would still be pointing at the old plugin. This would typically happen if you never updated your existing plugin to a new version. One common example of this is with Subsclipse, so you may want to manually upgrade that one.

like image 50
Uri Avatar answered Oct 16 '22 11:10

Uri


Take a look into this blog entry: How to make your Eclipse plugin list survive an Eclipse upgrade

I also used the Yoxos service to build my "own" Eclipse distribution. I guess it should be easy possible to just upgrade the core elements in such a profile, keeping the plugins. It has included dependency checking, so it's very nice to get a distribution running.

like image 25
MicSim Avatar answered Oct 16 '22 11:10

MicSim