List<String> result = ContainerUtil.newArrayList();
for (String path : paths) {
if (CachingBundleInfoProvider.canBeBundlified(path)) {
indicator.setText2(path);
try {
File bundledDependency = wrapper.wrapLibrary(new File(path), outputDir, libRules);
if (bundledDependency != null) {
result.add(bundledDependency.getPath());
}
}
catch (OsgiBuildException e) {