Hey everyone, I downloaded odejava, followed the installation instructions found here (http://fivedots.coe.psu.ac.th/~ad/jg2/ch05/worldsCollide.pdf) since the odejava sites instruction links don’t work, and I can not get anything to work. When I call Odejava.getInstance(); I keep getting:
Exception in thread “main” java.lang.NoClassDefFoundError: org/apache/log4j/Logger
at org.odejava.Odejava.(Odejava.java:77)
at Game.createSceneGraph(Game.java:182)
at Game.(Game.java:245)
at Game.main(Game.java:292)
Caused by: java.lang.ClassNotFoundException: org.apache.log4j.Logger
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 java.lang.ClassLoader.loadClassInternal(Unknown Source)
… 4 more
I am at my wits end. I can import org.apache.log4j.Logger; just fine, and I can even instantiate one using Logger.GetLogger() (im guessing a singleton pattern). So, I have no idea why the odejava is throwing the ClassNotFoundException. Any thoughts?