Should I commit the ENTIRE codebase, as well as the POM(s), and have users check out projects one at a time for multiple maven projects, one of which contains several modules?
Should I ONLY commit the POMs, and configure SCM information within each POM?
How do commits/check outs work when you configure the maven SCM plugin? Do you store the POM's via subversion, check them out, and then materialize the POM so maven will download the rest of the corresponding files to that project? What if you needed to add new files, but you were using SCM through maven?
I'm very confused about the difference between just storing files using svn (the standard way), vs storing the SCM information on a per-pom basis. There appears to be absolutely NOTHING for documentation on how to use Maven and load it with SCM information.
Is it best to store the SCM information directly inside of POMs, or as I said before, should I just add entire projects to SVN including their respective POMs?
Or is it better to embed the SCM information directly into maven, and have maven materialize said project? Does the Maven SCM plugin play nicely with subclipse? For example - after you "materialize" a project from a maven POM, does it import the project files from SVN, and then show them in eclipse as under version control? If I was embedding SCM information into maven POMs, would I then just create a separate SVN repo for ONLY my pom files? Or would I just put all the POM files directly in the trunk of my engineering repo?
Hopefully someone can help me clarify this. I'm very confused. Thanks!