Generating JAR from Eclipse from a project partially created with NetBeans
Hello!
I realised a java project in Eclipse with a graphic and testual interface.
The user can choose between the two interfaces writing "startx" to activate the visual one and any other characters to activate the testual one.
The graphic interface was made with netBeans 5.5, and then imported in Eclipse. I added the correct swing library. I launch the main class under Eclipse and it works perfectly.
I wish to export this project as a jar.
I followed the Eclipse tutorial about exporting mode and I created the jar.
It seems to work, but, when I try to launch the graphic interface, I get a NoClassDefFoundError org/jdesktop/layout/GroupLayout$ error. I think it needs org-jdesktop-layout.jar
I trid to import it as library, as jar but I couldn't solve the problem.
I see this is a very common problem, but I didn't manage to solve it...
Can someone explain me step-by-step what have I to do to obtain my nice and complete jar file? I even tried to edit the manifest...
Ah, I'm under Windows.
Thank you a lot!

