if (destfile == null) {
throw new BuildException(
"Destination file must be supplied for csv report");
}
final CSVFormatter formatter = new CSVFormatter();
formatter.setReportOutput(new FileSingleReportOutput(destfile));
formatter.setOutputEncoding(encoding);
return formatter;
}