My company does a lot of projects that look very similar. Time for a Maven archetype, right? I think so.
To speed up the process, I don't want the developer of each project to have to manually set up source control (we use Mercurial). Instead, when the the project is created from a Maven archetype, it should already be attached to a version control repository, and Maven creates a branch just for that project.
My attempt so far has an archetype whose source pom has the desired SCM info in it, so the project is created with version control. However, since there's no .hg directory on disk, Mercurial doesn't believe the project's under source control. I think my only option is doing something with scm:bootstrap, but I'm not sure: I've only been working with Maven for two days.
BTW, we're using Eclipse and the m2eclipse plugin, so if there's an Eclipse-only way of doing this, it's fine with me.