Eclipse : Project properties don't show Build Path

后端 未结 7 759
借酒劲吻你
借酒劲吻你 2021-02-08 19:08

\"Build

My eclipse does not show the \'Java Build Path\' option in a JAVA project\'s propertie

相关标签:
7条回答
  • 2021-02-08 19:10

    I was in the same situation. Found two solutions for this in different time

    1. Right click on src folder and see if you can see the option to configuer build path. After that right click on the project and maven > update project.

    If this does not work

    1. Right click on the project > properties > project facets and click on the link saying convert the project into faceted project.

    Right click on the project , Refresh and check if you get the option to configure build path

    0 讨论(0)
  • 2021-02-08 19:12

    To resolve this issue follow the below options

    1) Go to Project root 2) Select "Project facets" from Properties 3) Check "Java"

    This fixes the issue

    0 讨论(0)
  • 2021-02-08 19:17

    You may get some help from any of these blogs

    How do I add a builder to a given project

    OR check this post

    Eclipse adding your own build command

    0 讨论(0)
  • I had the same problem in trying to compile a project. The solution and go to "run configurations" and choose the right Runtime JRE

    0 讨论(0)
  • 2021-02-08 19:22

    Make sure your project's root directory contains .classpath and .project file.

    1. The .classpath File should look like this -

    1. The .project file should look like this -

    With these changes in place you should be able to see proper folder structure as well as the "Build Path" option when you right-click the project.

    0 讨论(0)
  • 2021-02-08 19:34

    Build your project using Project->Build Project in Eclipse .This will automatically adds build path to your project.

    0 讨论(0)
提交回复
热议问题