JDepend jdepend = new JDepend(packageFilter);
File[] classPath = getClassPath(root.options());
for (File e: classPath) {
if (e.isDirectory()) {
jdepend.addDirectory(e.toString());
} else {
root.printNotice(
"Excluding from dependency analysis: " + e);
}
}