Why does my eclipse project not have a build path?

后端 未结 10 1478
南方客
南方客 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:03

    There where no entrys after right click on my projekt in Eclipse. How to click something, wenn build path entries are missing. So my Eclpise didn't detect my java project. I used following Maven command and after that I cleaned the project too. Now Projekt works as expected. So...

    If you are using Maven, try mvn eclipse:eclipse in cmd console in your project directory! Make sure to use the path to your Maven folder for the command.

    For example:

    cd C:\yourEclipseProject\
    
    C:\yourPathToMaven\apache-maven-2.2.1\bin\mvn eclipse:eclipse
    

    This was helping me. After unsuccessful web research, a coworker told me this tip.

提交回复
热议问题