Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an RCP application to develop; the code was written a couple of years ago, and I have to finish it. I imported the plugins in Eclipse, I solve all the dependencies, but when I try to launch it I get this error:

!SESSION Tue Mar 29 10:13:24 CEST 2011 
-----------------------------------------
!ENTRY org.eclipse.equinox.launcher 4 0 2011-03-29 10:13:24.326
!MESSAGE Exception launching the Eclipse Platform:
!STACK
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 try to reinstall the Eclipse zip (deleting all and reunzipping it), but it still not work. I try to start the application with the -clean option to rebuild the cache, but it still not work. But if I create some dummy hello-plugin with hello-feature and hello-product, all works fine. Anyone have some hints to solve this problem? Thanks.

share|improve this question
Heh. I have an RCP application to develop, the code was written a couple of years ago, and I have to fix it. Dependencies will not resolve for me; must have downloaded 50 jar files today, and the last one is "not found" by eclipse although my eyes tell me the class file is in there... i'll be watching this question carefully :P – bdares Apr 4 '11 at 7:56
show us your code! – Alex_M Apr 4 '11 at 12:58
I cannot post the code, because is a 100 Mb project divided in four plug-in and one feature. I don't know if this problem derive from a bad Eclipse configuration or it's a bug of the developer, i just answer for people who have had the same problem and have solve it. – Alberto Apr 5 '11 at 9:05
Ok the problem is solved, i just change the option The product configuration us based on from features to plug-ins and add all the dependencies with the button Add Required Plug-ins. – Alberto Apr 6 '11 at 7:12

1 Answer

up vote 4 down vote accepted

Ok the problem is solved, i just change the option The product configuration is based on from features to plug-ins and add all the dependencies with the button Add Required Plug-ins. I don't know if this is the correct way, it just work.

share|improve this answer
Solved my problem. Thanks. – deeJ May 24 '12 at 9:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.