String allSourceDisplayName = String.format("%s source", displayName);
allSource = new UnionFileTree(allSourceDisplayName, resources, javaSource);
String classesDisplayName = String.format("%s classes", displayName);
classes = new PathResolvingFileCollection(classesDisplayName, fileResolver, taskResolver, new Callable() {
public Object call() throws Exception {
return getClassesDir();
}
});
}