I have maven-based GWT projects which generate a lot of complex obfuscated javascript files which are not relevant to the development process. The Eclipse javascript parser is not smart enough to handle many of the generated files, and reports tons of spurious errors in these files which I don’t care about.
I can go into my project properties and set exclusion paths in “MyEclipse->Validation->Excluded Resources” to stop eclipse from reporting these errors, but I need a way to set those paths in the POM file so that they will be preserved for other developers who check out a clean project POM from the source repository.
How can I do this in MyEclipse?