Type org.eclipse.core.runtime.IConfigurationElement cannot be resolved

When creating my RCP Eclipse application, I get the following error.

The type org.eclipse.core.runtime.IConfigurationElement cannot be resolved. This indirectly refers to the required .class files.

I have included the org.eclipse.core.runtime library in my dependencies, so I'm not sure what the problem is.

+3
source share
1 answer

As mentioned in this thread

Do not include jar files manually [in the file plugin.xml). Use the dependencies tab in the plugin.xml editor to manage plugin dependencies.

Here is a graphic illustration of what this means:

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

MANIFEST.MF, "" org.eclipse.core.runtime, , org.eclipse.equinox.registry, !

+4

Source: https://habr.com/ru/post/1735731/


All Articles