// Add this plugin jar to the classpath
extendedClasspath.add(d.pluginIdToJarPath(RutaIdePlugin.PLUGIN_ID));
// UIMA jar should be added the end of the class path, because user uima jars
// (maybe a different version) should appear first on the class path
extendedClasspath.add(d.pluginIdToJarPath("org.apache.uima.runtime"));
extendedClasspath.add(d.pluginIdToJarPath("org.apache.uima.ruta.engine"));
} catch (IOException e) {
throw new CoreException(new Status(IStatus.ERROR, RutaIdePlugin.PLUGIN_ID, IStatus.OK,
"Failed to compose classpath!", e));
}