Commit 933e0afc authored by Claus Nagel's avatar Claus Nagel
Browse files

fixed loading of JAXB plugins

parent 04f813c4
...@@ -186,6 +186,8 @@ public class ADESchemaCompiler { ...@@ -186,6 +186,8 @@ public class ADESchemaCompiler {
if (('-' + plugin.getOptionName()).equals(pluginArgs[i])) { if (('-' + plugin.getOptionName()).equals(pluginArgs[i])) {
log(LogLevel.INFO, "Found JAXB plugin for option '-" + plugin.getOptionName() + "'"); log(LogLevel.INFO, "Found JAXB plugin for option '-" + plugin.getOptionName() + "'");
options.activePlugins.add(plugin); options.activePlugins.add(plugin);
options.pluginURIs.addAll(plugin.getCustomizationURIs());
options.getAllPlugins().add(plugin);
plugin.onActivated(options); plugin.onActivated(options);
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment