private static void createLink(IProject project, Library lib, String file,
String outputFolder) throws CoreException
{
IPath path = project.getFullPath().append("/" + outputFolder);
path = path.append("/" + file.substring(0, file.indexOf('.')));
path = path.addFileExtension(file.substring(file.indexOf('.') + 1));
IFile newFile = createFileHandle(path);
Bundle b = Platform.getBundle(ILibrariesConstants.PLUGIN_ID);
String location = b.getLocation();
// System.out.println("Bundle location: " + location);
IPath systemfilePath = null;