expected.setAddSchema( false );
expected.mapReleaseVersion( "groupId:artifactId1", "2.0" );
expected.mapReleaseVersion( "groupId:artifactId2", "3.0" );
expected.mapDevelopmentVersion( "groupId:artifactId1", "2.1-SNAPSHOT" );
expected.mapDevelopmentVersion( "groupId:artifactId2", "3.0.1-SNAPSHOT" );
IdentifiedScm scm = new IdentifiedScm();
scm.setId( "id" );
scm.setConnection( "connection" );
scm.setDeveloperConnection( "developerConnection" );
scm.setUrl( "url" );
scm.setTag( "tag" );
expected.mapOriginalScmInfo( "groupId:artifactId1", scm );
scm = new IdentifiedScm();
scm.setId( null );
scm.setConnection( "connection2" );
scm.setUrl( "url2" );
scm.setTag( null );
scm.setDeveloperConnection( null );
expected.mapOriginalScmInfo( "groupId:artifactId2", scm );
expected.mapResolvedSnapshotDependencies( "external:artifactId", "1.0", "1.1-SNAPSHOT" );
return expected;
}