conf.addProperty(Engine.CONFIG_PACKAGES, packages);
conf.addProperty(Engine.CONFIG_INPUT_PLUGINS, inputPlugins);
conf.addProperty(Engine.CONFIG_OUTPUT_PLUGINS, outputPlugins);
conf.addProperty(Engine.CONFIG_BASE_OUTPUT_DIR, f.getAbsolutePath());
Engine eng = new Engine(conf);
List<PackageContainer> parsedPackages = eng.execute();
getLog().info(
String.format("Parsed %d packages", parsedPackages.size()));
}
}