We have a global folder that holds resources used by multiple web apps. Is there a way to inlcude these in a project (for code inspection, validation, etc) without having to create a folder and copying those resources into it? For example,
webroot
/common
//js
//jsp
/project1
/project2
Project1 and project2 both draw resources from the common folder. Currently, I'm creating a new folder in, say the project1 structure so that IntelliJ can do code inspection/hinting. But this makes it seem like a common folder exists under project1 when it really does not.