addDependencies(pluginList);
}
DownloadResults downloadPoller = new DownloadResults();
String targetServerPath = targetServerDirectory.getAbsolutePath();
Kernel kernel = new BasicKernel("Assembly");
PluginRepositoryList pluginRepoList = new PluginRepositoryDownloader(Collections.singletonMap(localRepo, (String[]) null), true);
try {
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 {
kernel.shutdown();
}
getLog().info("Installed plugins: ");
for (Artifact artifact: downloadPoller.getInstalledConfigIDs()) {
getLog().info(" " + artifact);
}