projectXmlFile = new File( workingDirectory, "project.xml" );
}
if ( !projectXmlFile.exists() )
{
throw new ContinuumBuildExecutorException( "Could not find Maven project descriptor." );
}
try
{
metadataHelper.mapMetadata( projectXmlFile, project );
}
catch ( MavenOneMetadataHelperException e )
{
throw new ContinuumBuildExecutorException( "Error while mapping metadata.", e );
}
}