Why does my eclipse project not have a build path?

后端 未结 10 1640
南方客
南方客 2021-02-07 18:00

What is the advantage with not having a build path in eclipse? Why is that setting default when it\'s like something you\'d never use? It seems eclipse indigo was developed to m

10条回答
  •  轮回少年
    2021-02-07 18:20

    It looks like you did not add Eclipse project metadata files to your source control system, so Eclipse doesn't know what your build path is or whether it is even a java project. You can see that the little folder on your dungeonworld project is missing the little 'j', which means Eclipse doesn't think it's a java project.

    Go back to your other computer and look for the following files in your original project root...

    1. .project
    2. .classpath
    3. .settings/*

    Make sure all of the end up in your source control system or nothing will work right.

提交回复
热议问题