Jan Stolarek
Jan Stolarek

Reputation: 1429

Forcing Eclipse to store plugins outside of workspace

I'm preparing to update my Eclipse to 4.2 version and I'd like to solve one problem that has been annoying me since many many years. Right now my installation looks like this:

What I'd like to achieve is:

Upvotes: 2

Views: 495

Answers (2)

Konstantin Komissarchik
Konstantin Komissarchik

Reputation: 29139

Take a look at the shared install documentation for instructions on how to setup a base eclipse that a user doesn't have write access to and allow user-local install of plugins.

http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2Freference%2Fmisc%2Fmulti_user_installs.html

Upvotes: 1

E-Riz
E-Riz

Reputation: 32905

Although I'm not a linux user, I'm 99% certain that plugins will never be installed into a workspace; that's just contrary to how workspaces and plugins are separated in Eclipse's architecture. A workspace may have configuration/cache data that is stored with file/folder names resembling plugin names, but the actual plugins are stored elsewhere.

I think if you read the multi-user install guide from the online help, you'll find one of the options outlined there will suit your needs.

Upvotes: 2

Related Questions