Projects in the workspace are not displayed in the project & # 8594; clean

Sometimes when starting eclipse my projects in my workspace do not appear in the project -> clean . How can I fix this problem?

Things I tried:

  • Closing projects and reopening.
  • project deletion and re-import
  • closing and restarting eclipse
  • computer reboot.
  • refresh the workspace and repeat any of these steps.

Sometimes the number 2 will work, and sometimes it will not. This is a very annoying problem, any help is much appreciated!


I have defined custom ant builds for all projects. I did not select all other builders except my custom builder. Some projects appear, and some do not.

+5
source
4

eclipse . , .

Eclipse... =)

+4

"", - . , "". , .

, , .project ; .

+4

<buildSpec> tag .project . eclipse Juno.

<buildCommand>
        <name>org.eclipse.jdt.core.javabuilder</name>
        <arguments>
        </arguments>
</buildCommand>
<buildCommand>
        <name>org.eclipse.wst.common.project.facet.core.builder</name>
        <arguments>
        </arguments>
</buildCommand>
+1

.project, , Eclipse . - , .

Eclipse, , . , PERL Eclipse.

, Eclipse LUNA.

<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
    <name>my-war</name>
    <comment></comment>
    <projects>
    </projects>
    <buildSpec>
        <buildCommand>
            <name>org.eclipse.wst.common.project.facet.core.builder</name>
            <arguments>
            </arguments>
        </buildCommand>
    </buildSpec>
    <natures>
        <nature>org.eclipse.wst.common.project.facet.core</nature>
        <nature>org.eclipse.wst.common.moduleCore.ModuleCoreNature</nature>
    </natures>
</projectDescription>

, angularjs Maven , , , buildSpec natures eclipse, , :

<buildSpec>
        <buildCommand>
            <name>org.eclipse.m2e.core.maven2Builder</name>
            <arguments>
            </arguments>
        </buildCommand>
    </buildSpec>
    <natures>
        <nature>org.eclipse.m2e.core.maven2Nature</nature>
    </natures>
0

All Articles