How do you manage growing eclipse configurations? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T17:44:37Zhttp://stackoverflow.com/feeds/question/154768http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/154768/how-do-you-manage-growing-eclipse-configurations2How do you manage growing eclipse configurations?rcreswick2008-09-30T20:08:50Z2008-09-30T20:57:41Z
<p>I use eclipse for quite a lot of work, including:</p>
<ul>
<li>multiple "utility" projects that include code that most of my java work makes use of</li>
<li>various plugin-related projects that I sync and use periodically (eg: the <a href="http://git.or.cz/gitwiki/EclipsePlugin" rel="nofollow">Git</a> plugin)</li>
<li>plugin projects I'm actually developing</li>
<li>the occasional pydev / non-java project</li>
<li>etc...</li>
</ul>
<p>It is becoming quite difficult to keep all these things straight, particularly since I never need to use them all at once. I've tried using <a href="http://www.eclipse.org/mylyn" rel="nofollow">Mylyn</a> (and I'm trying it again) but in the past it has caused eclipse to run extremely slow, and I am notoriously horrible at remembering to tell mylyn that I've switched tasks, so it tends to learn very odd (and largely useless) sets of resources.</p>
<p>I've considered using multiple workspaces, but that is problematic when multiple projects need to exist in multiple workspaces, and when I need to synchronize the eclipse metadata directories across workspaces.</p>
<p>What is the best way to manage complex working environments in eclipse? Other development environments aren't a viable option because there aren't any sane alternatives when it comes to developing eclipse plugins (and that is a requirement).</p>
<p>(I <em>think</em> a very similar question was asked a month or two ago, but I haven't been able to find it...)</p>
http://stackoverflow.com/questions/154768/how-do-you-manage-growing-eclipse-configurations/154786#1547860Answer by JesperE for How do you manage growing eclipse configurations?JesperE2008-09-30T20:11:21Z2008-09-30T20:11:21Z<p>You want to use "Working Sets".</p>
http://stackoverflow.com/questions/154768/how-do-you-manage-growing-eclipse-configurations/154819#1548192Answer by Dennis S. for How do you manage growing eclipse configurations?Dennis S.2008-09-30T20:16:05Z2008-09-30T20:16:05Z<p>It isn't quite clear to me what your need is. But have you tried using working sets in the Package Explorer? </p>
<p>Open the Package Explorer view, open its menu, and Select Working Set. That lets you give a name to a subset of all the projects loaded in your workspace.</p>
<p>Switch working sets using the package Explorer menu. Use working sets to limit the scope of Search, errors, problems, etc.</p>
<p>Define as many working sets as you need to group your projects. A project can be part of any number of working sets.</p>
http://stackoverflow.com/questions/154768/how-do-you-manage-growing-eclipse-configurations/154829#1548290Answer by pkaeding for How do you manage growing eclipse configurations?pkaeding2008-09-30T20:17:16Z2008-09-30T20:17:16Z<p>I would recommend using different workspaces, and then adding the common projects to each workspace (you can specify the location of the project to be outside of the workspace). I believe this will work, but I haven't tried it, so I can't be sure.</p>
<p>As @JesperE and @Dennis S suggested, working sets will help you organize your projects, but they may not make eclipse run any faster, since the projects will all still be loaded into the workspace.</p>
http://stackoverflow.com/questions/154768/how-do-you-manage-growing-eclipse-configurations/155066#1550660Answer by rcreswick for How do you manage growing eclipse configurations?rcreswick2008-09-30T20:57:41Z2008-09-30T20:57:41Z<p>Here's a screencast about working sets -- this does look like the right answer.</p>
<p><a href="http://www.peterfriese.de/eclipse-working-sets-part-i/" rel="nofollow">http://www.peterfriese.de/eclipse-working-sets-part-i/</a></p>