How to exclude a folder that is producing warnings/errors in an Eclipse project?

48,635

Solution 1

You can use the Configure Contents... on the menu of Problems panel. There you can create a new configuration and set the scope to On Working Set:. Click on Select... and create a new working set that excludes the folders you don't want.

Solution 2

I encountered a similar problem and resolved it by moving the folder into my project folder. I then went to:

  1. Project > Properties > Resource > Resource Filters > Add...
  2. Set Filter type = Exclude all.
  3. Set Applies to = Folders.
  4. Set File and Folder Attributes = { Name, matches, < your_folder_name > }

Solution 3

There is an Eclipse feature request for ignoring warnings from specified source folders. There have been several patches posted to the comment thread that provide implementations of the feature. It appears that a final patch is nearing the review stage for inclusion in an upcoming release.

Update 6/19/2012: Eclipse Juno 4.2M6 supports ignoring problems for a particular source folder. The feature is available on the Java Build Path dialog. See the release note.

Solution 4

If you really want to exclude certain classes/packages from autobuild you can just right click on them and select Build Path -> Exclude

alt text

Share:
48,635
gMale
Author by

gMale

Software Developer currently specializing in Android. I do a little tweeting and blogging

Updated on October 22, 2020

Comments

  • gMale
    gMale over 3 years

    Okay. I'm sick of this problem. This has to have an easy fix, I'm sure of it!! I hope SO can help me to get rid of this once and for all!

    Question

    How do we get Eclipse to stop trying to process/compile all files under a particular project directory? The goal is for no errors/warnings to exist in the problems view if they relate to something in this folder or it's subfolders.

    Background

    We run Eclipse 3.6 and the m2eclipse plugin v0.10.2.20100623 manages our autobuild. For reasons beyond my control, we have the entire BlazeDS distribution in our SVN project directory under src/main/resources/blazeds. Essentially, this directory contains a vanilla distribution of tomcat running blazeds to which all our configuration and project files are added when we deploy to our server via SCP.

    So, when we run deploy, this version of tomcat is copied to the server and our project is placed inside. Tomcat and our RIA application work and everything is fine.

    The problem is, Eclipse tries to compile everything under src/main/resources/blazeds when running AutoBuild and this generates about 300 errors/warnings in our problem view. So when a real error surfaces, it gets lost among the noise.

    The errors stem from code in /blazeds/tomcat/webapps/samples/testdrive-datapush and also the testdrive-httpservice, traderdesktop example webapps. They have dependent source code that's not on the classpath and jars that aren't included in the libraries.

    Failed Attempted Solutions

    I'm trying to push the proper solution: to remove the samples completely and also to get blazeds out of our version control. That's not happening anytime soon.

    I've followed the SO answer here but it's only a very temporary solution. I've tried adding exclusions everywhere I can think of and other members of my team have done the same. I've removed src/main/resources as a source directory (in preferences > Java Build Path > Source Tab) I've added exclusions for blazeds under the resource directory. I've tried every permutation of blazeds and ** as in *blazeds*, **/blazeds/**, etc.

    I've even tried including the libraries and source files the compiler is complaining about but I couldn't get it right without excessively mangling our project configuration.

    Summary

    This has to be simple. What is the conventional way to exclude a folder that is producing warnings/errors in an eclipse project?


    Update #1:
    gedim's solution below is decent but it
    1) doesn't clear red X's from the project
    2) is a change everyone on our team needs to do, manually
    (i.e., it's not in a project property file; thereby, it isn't checked into subversion)

    I hope there's a way to address the core problem by telling Eclipse that this directory doesn't contain
    items to compile/validate. Such a change would likely show up in one of the project setting files.


    Update #2:

    The picture below shows the red X's I'm trying to clear and that
    Build Path > Exclude
    isn't an option...

    Red X's won't go away