Reputation: 49
As in a topic. I can not find solution, how to add that option to right button list.
Upvotes: 1
Views: 12161
Reputation: 31
Right click on the project -> Search Project Facets -> Convert to faceted project -> Enable the builder (ex. Java)
Upvotes: 2
Reputation: 99
In the Toolbar Menu, click on "Window->Show View->Package Explorer.
This should fix the issue.
Upvotes: 6
Reputation: 41
It was a problem of mine too. Have you tried:
Upvotes: 4
Reputation: 581
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>
Upvotes: 3