use of com.buschmais.jqassistant.core.rule.impl.reader.AsciidocRuleParserPlugin in project jqa-core-framework by buschmais.
the class RuleSetTestHelper method getDefaultRuleParserPlugins.
public static List<RuleParserPlugin> getDefaultRuleParserPlugins(RuleConfiguration ruleConfiguration) throws RuleException {
List<RuleParserPlugin> ruleParserPlugins = asList(new AsciidocRuleParserPlugin(), new XmlRuleParserPlugin(), new YamlRuleParserPlugin());
for (RuleParserPlugin ruleParserPlugin : ruleParserPlugins) {
ruleParserPlugin.initialize();
ruleParserPlugin.configure(ruleConfiguration);
}
return ruleParserPlugins;
}
Aggregations