ivyConflict.setMatcher(getSettings().substitute(attributes.getValue("matcher")));
currentPluginDescriptor.addConflict(ivyConflict);
}
public void pluginExcludeStarted(Attributes attributes) {
IvyExclude ivyExclude = new IvyExclude();
ivyExclude.setOrg(getSettings().substitute(attributes.getValue("org")));
ivyExclude.setModule(getSettings().substitute(attributes.getValue("module")));
ivyExclude.setArtifact(getSettings().substitute(attributes.getValue("artifact")));
ivyExclude.setType(getSettings().substitute(attributes.getValue("type")));
ivyExclude.setExt(getSettings().substitute(attributes.getValue("ext")));
ivyExclude.setMatcher(getSettings().substitute(attributes.getValue("matcher")));
currentPluginDescriptor.addExcludes(ivyExclude);
}