[SOLVED] How to install JME with jar?

Hi everyone!



I'm actually working on a student project : an online poker game in 3D!



I begin the learning of JME with a workspace where i used JME source (and it worked) , but my professor want that i use jar files.



So i downloaded the .jar of JME and i put them in a lib directory in a new workspace. But when i want to run my application (just the display of a cube to test the stuff), i got a  

Exception in thread "main" java.lang.NoClassDefFoundError: org/lwjgl/LWJGLException

.

So i downloaded LWJGL .jars and added them to my lib directory but i got

GRAVE: Exception in game loop
java.lang.UnsatisfiedLinkError: no lwjgl in java.library.path



After some researches on the web, i added

-Djava.library.path="C:/blabla/Myworkspace/lib


in Default VM Argument but Eclipse said that there is a problem of version.

Can someone explain me how to install JME in Eclipse using jar? (cause i've just a week  :'( to do all the animation of my project and i don't want to lose a day on this!)

Thank you!!!

Just have to make sure java kind find your dlls.

java -classpath c:classpath -Djava.library.path="C:pathtoyourdlls"

Hope this link will help you:



http://www.jmonkeyengine.com/forum/index.php?topic=11828.msg88529#msg88529



Roslan

roslamir --> i downloaded "jME_2.0_Complete_(r4093).zip" and it works perfectly!  :slight_smile:



My only problem is that i wanted to use JME 1.0 because there more tutorials on it (i was learning JME on "learning JME by Cep21, and his version on JME 2.0 is not complete).



So my question is : does it exist a .zip "jME_1.0_Complete" that i can use for my project?  :?



Thanks for your answers!

Finnaly, i will stay on jME 2.0.  :smiley: It's not very hard to understand the modification.



Thanks.