I have to imagine this one's been asked many times before because I've encountered this one for years over several projects/customers/problems (I don't just specialize in one type of application development...)
There are a number of project source directories, the non-compiled kind, that I interface through eclipse. These range from fairly standard directories such as "src/main/webapp" and "src/main/scripts" to others used by various plugins from XSDs to .proto files for generating sources. I don't mind having to add these directories by editing the .classpath or via the UI from time to time but naturally, each time the maven-eclipse-plugin is called, the custom modifications are blown away. Ugh. So, is there a way to explicitly control the list of [<classpathentry kind="src"...] declarations, both in terms of content and order, via the maven-eclipse-plugin declaration? If not, why not???
