});
}
private static void installHelloWorldPlugin() {
ExamplePluginInstaller pluginInstaller = new ExamplePluginInstaller(PLUGIN_EXAMPLES_PATH + "/helloWorld", asList("plugin.groovy"));
pluginInstaller.installPlugin(new ExamplePluginInstaller.Listener() {
@Override public void onException(Exception e, String pluginPath) {
LOG.warn("Failed to install plugin: " + pluginPath, e);
}
});
}