-
Bug
-
Resolution: Unresolved
-
Minor
A project containing modules e.g.
ModuleA/ModuleA.Child1
Looks like isDescendantOf is returning the first match instead of checking for paths that should be excluded.
private boolean isDescendantOf(ChangeLogSet.Entry e, IvyModule mod) {
for (String path : e.getAffectedPaths())
if (path != null && path.startsWith(mod.getRelativePathToModuleRoot()))
return true;
return false;
}