As in a topic. I can not find solution, how to add that option to right button list.
Asked
Active
Viewed 1.2k times
4 Answers
6
In the Toolbar Menu, click on "Window->Show View->Package Explorer.
This should fix the issue.

Loy Alvares
- 99
- 1
- 2
-
Silly me, I was looking in Navigator for that option :) – raja777m Apr 13 '16 at 18:53
4
It was a problem of mine too. Have you tried:
- Right click on the project's name.
- Click Properties.
- Click Java Build Path that appear on the menu to the left.
- From the buttons that appear on the right, click Add External JARs.
- From the window that appears, find the jar file(s) that you want to add and then click open. It should be done now.
3
You need to ensure that your project (.project file in your project's root directory) includes the Java Nature and build spec, for example:
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>project_1_x</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

ifx
- 561
- 2
- 13
-
1I just have checked .project file and it includes all entries U wrote. – Paweł Czech Jul 08 '11 at 13:06
2
Right click on the project -> Search Project Facets -> Convert to faceted project -> Enable the builder (ex. Java)

ArunM
- 31
- 5
-
This worked for me and I am able to see the Build Path option now as before I was not able to find anything related to the build path in the properties. – HookUp Nov 08 '17 at 22:47