Claus Jørgensen
Claus Jørgensen

Reputation: 26344

Hide GWT output folders in Eclipse

How can I hide the output folders (/war/com.projname.EntryPoint/) in the /war/ folder in Eclipse's Package Explorer?

I've tried setting the folders to 'Derived' but it doesn't chage a thing.

Upvotes: 1

Views: 872

Answers (3)

Adrien
Adrien

Reputation: 46

Unfortunately, the "Customize view" menu doesn't allow adding new filters. If the filter you need is not in the list, there is something else you can do:

  • Right-click on the project in the Project Explorer view, choose "Properties"
  • Expand "Resource", choose "Resource Filters"
  • Click "Add", and choose the appropriate rule

If you want to hide files from a subset of your project files, you can right-click any directory of your project and choose properties for only that directory and its subdirectories.

That worked on Eclipse Helios Service Release 2.

Upvotes: 1

nanda
nanda

Reputation: 24788

In the Package Explorer, click the triangle button on the toolbar. Select Filters... and add add appropriate exclusion rule for the output directory.

Upvotes: -1

Michael Balint
Michael Balint

Reputation: 2285

In the 'Project Explorer', if you click on the triangle on the upper right hand side and select 'Customize View', you should be able to set a filter on 'Java Output Folders' (ie the checkbox for this field should be selected).

Upvotes: 2

Related Questions