up vote 9 down vote favorite
2
share [g+] share [fb]

I am using eclipse 3.4.1 Java EE under Vista. It seems to like getting stuck when building my workspace. Canceling the build doesn't seem to do anything as well.

Why is this happening and how do I fix the problem?

link|improve this question

70% accept rate
The only plugin I have installed is maven. – seanlinmt May 10 '09 at 12:54
feedback

6 Answers

up vote 1 down vote accepted

You may want to take a look at How to report a deadlock. You may also want to check the Error view and/or the error log ([workspace]/.metadata/.log). If that doesn't help, you'll probably need to include more info about which plugins you have installed and which projects you have. Can you create a minimal workspace which reproduces the problem?

link|improve this answer
the problem is intermittent so it gets really annoying. But ok, let's see if i can get more info about the problem. – seanlinmt May 10 '09 at 6:50
It is possible that just creating a clean workspace and importing the projects will solve the problem. It's worth a try in any event. – zvikico May 12 '09 at 9:45
feedback

I was able to fix this by deleting the contents of: .metadata\.plugins\org.eclipse.core.resources\projects

Use at your own risk, of course.

link|improve this answer
4  
Worked for me too (BTW, to be safe you can always "mv yourContents yourContents.bak" instead of deleting them). – machineghost May 10 '10 at 21:38
Worked for me. Finally can get some work done. – Muhd May 20 '11 at 23:56
Actually, this removed all subclipse functionality from my projects, probably because they are no longer associated with a repository. I had to restore from backup. – Muhd May 21 '11 at 0:03
wow this error cost me about 1,5 day of my work. This was the exact solution. Can somebody please change this to the right answer! – Jeremy S. May 26 '11 at 7:10
1  
Indeed, this should be the accepted answer – TheStijn Jul 14 '11 at 9:58
feedback

Some time it's very helpful to execute eclipse from command line with "-clean" parameter to enforce it produce clean up for workspace.

link|improve this answer
AFAIK, it has nothing to do with the workspace. It cleans the plugins cache. You will notice that the startup time before asking for the workspace is much longer. After the workspace is specified, it is the same. – zvikico May 12 '09 at 9:42
Not only. It cleans eclipse cache in general, so every unrelated garbage within workspace will be wiped out as well. – Artem Barger May 12 '09 at 10:05
feedback

I just had the same problem.

By using Task Manager to kill the build process and exiting Eclipse with no projects open, I was able to get back into Eclipse and clean the project without opening it. I then restarted Eclipse again,loaded my project and all OK.

link|improve this answer
feedback

I had same issue with my Eclipse and as a solution, I created new project, copied all resources manually (using windows copy/paste) to new project, deleted old project and that's it.

Sometimes, this happens due to improper System shutdown and Eclipse workspace started facing similar issues.

Hope it will work.

link|improve this answer
feedback

Unselect automatic build using Eclipse-> Windows->Preferences helps fixing this issue.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.