@Override
protected void executeReport( final Locale locale ) throws MavenReportException
{
new LoggerUtils().loadConfiguration();
final CPD cpd = new CPD( minimumTokenCount, new FlexLanguage() );
try
{
final Map< String, IFlexFile > files = FileUtils.computeFilesList( sourceDirectory,
null,
"",
null );
for ( final Entry< String, IFlexFile > fileEntry : files.entrySet() )
{
cpd.add( new File( fileEntry.getValue().getFilePath() ) ); // NOPMD
}
cpd.go();
report( cpd );
}
catch ( final PMDException e )
{