It's not strange at all to have such a setup (eg we had this at our university, and the disk space for each user was not large enough to install your own version of Eclipse there.)
An easy way to achieve this is the dropins folder (I assume you're using Eclipse 3.5 Galileo):
- Create a dropins folder (eg on Linux/Mac: "~/dropins", on Windows: "C:\dropins")
- Start Eclipse with the following command line parameter:
-Dorg.eclipse.equinox.p2.reconciler.dropins.directory="C:\dropins"
Now just start it from the command line like this (cd
to your eclipse installation first, then):
On Linux/Mac:
./eclipse -Dorg.eclipse.equinox.p2.reconciler.dropins.directory="~/dropins"
On Windows:
eclipse.exe -Dorg.eclipse.equinox.p2.reconciler.dropins.directory="C:\dropins"
On Windows, you can also do this by right-clicking the Eclipse icon, and add the command line parameter in the dialog.