java-无法解析类型org.eclipse.core.runtime.IConfigurationElement
作者:互联网
在构建Eclipse RCP应用程序时,出现以下错误.
无法解析类型org.eclipse.core.runtime.IConfigurationElement.从所需的.class文件中间接引用它.
我已经将org.eclipse.core.runtime库包含在我的依赖项中,所以我不确定问题出在哪里.
解决方法:
正如在this thread中提到的
Don’t include the jar files manually [in the
plugin.xml
file). Use the dependencies tab in your plugin.xml editor to manage the dependencies on the plugins.
这是什么的图形说明:
alt text http://img91.imageshack.us/img91/923/eclipsercpruntime.png
双击MANIFEST.MF文件,然后通过“ Dependencies”选项卡,只需添加org.eclipse.core.runtime,它将添加其他依赖项,包括org.eclipse.equinox.registry,其中包括您缺少的类!
标签:rcp,eclipse,java 来源: https://codeday.me/bug/20191106/2000988.html