{
@SuppressWarnings( "unchecked" )
List<String> classpath =
includeTests ? project.getTestClasspathElements() : project.getCompileClasspathElements();
getLog().debug( "Using aux classpath: " + classpath );
configuration.prependClasspath( StringUtils.join( classpath.iterator(), File.pathSeparator ) );
}
catch ( Exception e )
{
throw new MavenReportException( e.getMessage(), e );
}