return (DependencyDescriptor) dds.get(parent);
}
private boolean isDependencyModuleExcluded(DependencyDescriptor dd, String rootModuleConf,
ModuleRevisionId dependencyRevisionId, String conf) {
Artifact a = DefaultArtifact.newIvyArtifact(dependencyRevisionId, null);
if (isRoot()) {
// no callers, but maybe some exclude
Boolean exclude = doesExclude(md, rootModuleConf, new String[] {rootModuleConf}, dd, a,
new Stack());
return exclude == null ? false : exclude.booleanValue();