I have an RCP application for development; The code was written a couple of years ago, and I have to finish it. I imported plugins in Eclipse, I solve all the dependencies, but when I try to run it, I get this error:
-----------------------------------------
java.lang.ClassNotFoundException:
org.eclipse.core.runtime.adaptor.EclipseStarter
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:617)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:575)
at org.eclipse.equinox.launcher.Main.run(Main.java:1408)
at org.eclipse.equinox.launcher.Main.main(Main.java:1384)
I am trying to reinstall Eclipse zip (uninstalling everything and restarting it), but it still does not work. I am trying to run the application with the option -cleanto rebuild the cache, but it still does not work. But if I create some kind of dummy hi-plugin with hello-feature and hello-product, everything works fine. Anyone have any tips for solving this problem? Thank.
source
share