In my project, most of my dependencies are pulled down through maven. For the short term, however, I need to depend on a SNAPSHOT jar. Is there a proper place to put this in maven's directory hierarchy, and how do I depend on it in the pom? Eventually the proper version of this jar will be in a maven repository, but in the short term I want to just include it with my project so that anyone developing on it with me has the same jar. So basically I want the exact same effect as if I was depending on this jar from a maven repository, except it will be included in my project.
Thanks for the help