I've been developing a standard web app and its really annoying to have Eclipse show src/main/resources and src/main/java in such a convenient flat-package way, yet I have to frequently drill down into src/main/webapp and all its subdirectories to modify my css, js, and html files.
I've never seen a project use additional source folders for resources like those, but is it out of the question to try? Ideally I'd love to have a directory structure like
src/main/java
src/main/resources
src/main/jsp
src/main/javascript
src/main/css
Has anyone setup a project like this? Does it become more of a hassle to even try, breaking existing plugins and whatnot?
src/main/webapp/folder ... so no need for supplemental resources configuration.