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
scm.setUrl( "http://localhost/viewvc/mypath/trunk/subproject1" );
config.mapOriginalScmInfo( "groupId:subproject1", scm );
config.mapOriginalScmInfo( "groupId:subsubproject", null );
phase.execute( config, new DefaultReleaseEnvironment(), reactorProjects );