Reputation: 1625
Based on a previous question, where I asked about IDEs to support development in multiple languages, Eclipse and Eclipse-based IDEs were mentioned in some of the answers. If I were to use these tools, would there be conflicts between them, or can they run side by side smoothly? Is it also possible to run different Eclipse instances with seperate plugins installed in each one?
Upvotes: 6
Views: 3503
Reputation: 5663
They may run side by side, as long as each has its own workspace and set of projects. When you try to mix them, running multiple instances on the same source directories, things can quickly go very wrong in very nasty ways (especially if you try to run them at the same time on that source tree).
Upvotes: 3
Reputation: 116179
They can run side-by-side without any problems, at least in my experiences. I've run CodeWarrior and Eclipse together, and I'm running Eclipse and IBM ClearQuest Client open at the same time right now.
Each Eclipse-based application is a unique application, with its own settings, plugins, configuration files stored in its directory. You can install and configure them independently of each other without any problems, which includes plugins.
Upvotes: 7
Reputation: 6345
They run side by side smoothly. You can even have different instances of classic Eclipse and they would run side by side smoothly.
Eclipse stores all of its configuration in its installation directory, so no conflicts, and all of the workspace settings in the workspace directory so you can have as many workspaces as you need.
update: And yes you can run as many instances with separate plugins as you need. All plugin configuration is stored in the instance's installation directory.
Upvotes: 4