无法解析org.eclipse.core.runtime.IConfigurationElement类型

时间:2010-03-06 16:56:26

标签: java eclipse rcp

构建Eclipse RCP应用程序时,出现以下错误。

无法解析类型org.eclipse.core.runtime.IConfigurationElement。它是从所需的.class文件间接引用的。

我在我的依赖项中包含了org.eclipse.core.runtime库,所以我不确定是什么问题。

1 个答案:

答案 0 :(得分:4)

正如this thread

中所述
  

不要手动[在plugin.xml文件中)包含jar文件。使用plugin.xml编辑器中的dependencies选项卡来管理插件的依赖项。

以下是这意味着什么的图解说明:

alt text http://img91.imageshack.us/img91/923/eclipsercpruntime.png

双击MANIFEST.MF文件,然后通过“依赖关系”标签添加org.eclipse.core.runtime,它会添加其他依赖项,包括org.eclipse.equinox.registry,其中包含您缺少的类!