in apache-rat-plugin/src/main/java/org/apache/rat/mp/RatCheckMojo.java [129:142]
private InputStream getStyleSheet() throws MojoExecutionException {
if (reportStyle == null || ReportFormat.PLAIN.is(reportStyle)) {
return Defaults.getPlainStyleSheet();
} else if (ReportFormat.XML.is(reportStyle)) {
return null;
} else {
try {
return new FileInputStream(reportStyle);
} catch (FileNotFoundException e) {
throw new MojoExecutionException(
"Unable to find report stylesheet: " + reportStyle, e);
}
}
}