score:151

Accepted answer

i added this question and answering on my own as i could not find an answer on stackoverflow and it may benefit someone else

answer is:

on your project "project", right click -> properties>builders remove the missing builder

source http://www.eclipse.org/forums/index.php/t/28894/

score:0

adding the builder ( for example : in my case java builder) in .project file of the error getting project worked for me.

score:1

you need to remove missing builders from this location right click on project->properties->builders remove all missing builders

score:2

in my case, this happened after fiddling with existing builders (e.g. renaming them) and the solution was to restart eclipse (neon.3 v4.6.3).

score:4

i was facing the same issue,

"errors running builder 'integrated external tool builder' on project {project name}"

you must go to your .project file in your work space, and you can put in comment or delete this lines

<buildcommand>
            <name>org.eclipse.ui.externaltools.externaltoolbuilder</name>
            <triggers>full,incremental,</triggers>
            ...
            ...

</buildcommand>

and after that, you can rebuild your project and it will work correctly.

reference: https://bugs.eclipse.org/bugs/show_bug.cgi?id=118294

score:9

you can follow these steps.

  1. select the right project.
  2. choose "project"on the tool bar -> properties
  3. click "builders" on the menu of the popped up window
  4. remove the missing builders

reference links


Related Query

More Query from same tag