dependency.addAttribute(new IvyBooleanTagAttribute("transitive",
"a boolean indicating if this dependency should be resolved transitively or not",
false));
IvyTagAttribute confAtt = new IvyTagAttribute("conf",
"an inline mapping configuration spec", false);
dependency.addAttribute(confAtt);
confAtt.setValueProvider(new IValueProvider() {
public String[] getValuesfor(IvyTagAttribute att, IvyFile ivyFile) {
String qualifier = ivyFile.getAttributeValueQualifier();
int index = qualifier.lastIndexOf(';') + 1;
StringBuffer base = new StringBuffer(qualifier.substring(0, index));