In Eclipse, how can I exclude some files (maybe based on the .svn extension or filename) from being copied to the output folder?
build-process, eclipse, java, svn
Solution
Have you tried to add
`**/.svn/`
to the Exclusion patterns at the Source preferences of the project's build path settings?
Problem
I'm developing a Java application using Eclipse. My project has two source directories that are both built and then some files are copied into the output folder. From the output directory I then run my application and all works well. However, I keep having these warnings: Snapshot from Problems tab in Eclipse http://www.freeimagehosting.net/uploads/128c1af93f.png Anyone know how to get rid of these warnings? Maybe by excluding some files, maybe based on the .svn extension or filename, from the build process? If so, how would I go about excluding those?