config.mapReleaseVersion( "groupId:artifactId", RELEASE_VERSION );
config.mapDevelopmentVersion( "groupId:artifactId", NEXT_VERSION );
config.mapReleaseVersion( "groupId:subproject1", RELEASE_VERSION );
config.mapDevelopmentVersion( "groupId:subproject1", NEXT_VERSION );
config.mapReleaseVersion( "groupId:subsubproject", RELEASE_VERSION );
config.mapDevelopmentVersion( "groupId:subsubproject", NEXT_VERSION );
config.mapOriginalScmInfo( "groupId:artifactId", null );
Scm scm = new Scm();
scm.setConnection( "scm:svn:file://localhost/tmp/scm-repo/trunk/subproject1" );
scm.setDeveloperConnection( "scm:svn:file://localhost/tmp/scm-repo/trunk/subproject1" );
//MRELEASE-107