use of org.commonjava.indy.promote.model.ValidationRuleSet in project indy by Commonjava.
the class AbstractValidationRuleTest method getRuleSet.
protected ValidationRuleSet getRuleSet() {
ValidationRuleSet ruleSet = new ValidationRuleSet();
ruleSet.setName("test");
ruleSet.setStoreKeyPattern(new StoreKey(group, TARGET_NAME).toString());
ruleSet.setRuleNames(Collections.singletonList(getRuleScriptFile()));
return ruleSet;
}
Aggregations