private void processExportedPackage(Set<File> classPaths, ExportPackage exportPackage, File packageDirectory)
throws IOException {
ExportClassFilter classFilter = new ExportClassFilter(exportPackage);
String packageName = exportPackage.getName();
Version packageVersion = exportPackage.getVersion();
File directory = new File(packageDirectory, packageName + File.separator + packageVersion.toString());
directory.mkdirs();
String namePath = packageName.replace('.', File.separatorChar);
for (File basePath : classPaths) {
File packagePath = new File(basePath, namePath);
File[] children = packagePath.listFiles();