PluginInstallerGBean installer = new PluginInstallerGBean(targetRepositoryPath, targetServerPath, installedPluginsList, servers, pluginRepoList, kernel, getClass().getClassLoader());
installer.install(pluginList, sourceRepo, true, null, null, downloadPoller);
if (overrides != null) {
for (Override override: this.overrides) {
AttributesType attributes = override.getOverrides(overridesDir);
installer.mergeOverrides(override.getServer(), attributes);
}
}
} catch (Exception e) {
throw new MojoExecutionException("Could not use plugin installer bean", e);
} finally {