1

As in a topic. I can not find solution, how to add that option to right button list.

Paweł Czech
  • 49
  • 2
  • 3
  • 8

4 Answers4

6

In the Toolbar Menu, click on "Window->Show View->Package Explorer.

This should fix the issue.

Loy Alvares
  • 99
  • 1
  • 2
4

It was a problem of mine too. Have you tried:

  1. Right click on the project's name.
  2. Click Properties.
  3. Click Java Build Path that appear on the menu to the left.
  4. From the buttons that appear on the right, click Add External JARs.
  5. From the window that appears, find the jar file(s) that you want to add and then click open. It should be done now.
tbraun89
  • 2,246
  • 3
  • 25
  • 44
Utku
  • 41
  • 2
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
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