Error Solved

Finally I solved the error

Eclipse project missing java builder

leave a comment »

Description: Eclipse can not build the project, because  project is missing default builder.  It happens most of the time when checking out project from SVN or CVS.

Solution:  You need to add the default Java builder into .project file.

Verify that following lines are present in .project file of the eclipse project. If it is not present in the file, copy it from here and save the file.

Adding default Java builder


<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>

That’s it! select the Java builder from project propertiese > builder, clean and build the project again. you should be able to build the project now.

Written by daringtakers

January 6, 2009 at 9:43 am

Posted in eclipse

Tagged with ,

Leave a Reply