* @throws MojoExecutionException
* If the repository cannot be created.
*/
protected ReportPluginRepository getReportPluginRepository(Map<String, Object> properties) throws MojoExecutionException {
try {
return new ReportPluginRepositoryImpl(pluginConfigurationReader, properties);
} catch (PluginRepositoryException e) {
throw new MojoExecutionException("Cannot create rule plugin repository.", e);
}
}