Reputation: 2725
I have a number of tools that I typically install with Eclipse, such as Subversive, PMD, EclEmma, etc. Every time I update Eclipse, I have to manually go through and add each of the tools as well. Is there a way to package the tools so I can install them together rather than individually?
Upvotes: 2
Views: 661
Reputation: 12718
I know of two possible solutions - none of them exactly what you ask for, but...
p2f
file does not include the binary features and plug-ins themselves - just a descriptive reference. (I should say, that I have had some problems with the corresponding import wizard, but YMMV...)Personally, I use the second method, as I then don't have to keep updating the p2f
file whenever I find some new interesting features and - as noted above - the import wizard doesn't always work as I would expect.
I keep the old Eclipse installation around for some time anyway to ensure I have something to fall back on in case of problems...
Upvotes: 2
Reputation: 6873
First thing that comes to me is downloading every plugin you need. Store it in a folder and in the Eclipse Update dialog, select that folder in place of the URL.
Cannot remember if you also need to compile some sort of XML list of plugins installed.
With this setup, each time you install Eclipse, simply you use its update procedure and install every package you find using as Update Url your directory.
PS: Take a good look at this excellent question here on SO
Upvotes: 0