Sign up ×
Game Development Stack Exchange is a question and answer site for professional and independent game developers. It's 100% free, no registration required.

When I run my JAR in GNU/Linux (Linux Mint), the following stack trace is returned.

Exception in thread "main" java.lang.NoClassDefFoundError: 
javax/vecmath/Tuple3f
at my.class.path.main(MyClass.java:235)
Caused by: java.lang.ClassNotFoundException: javax.vecmath.Tuple3f
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 1 more

The class javax/vecmath/Tuple3f could not be found.

It works perfectly on OS X and I don't care about Windows because it's a load of malware that doesn't respect user privacy.

How can one get the javax package to work on GNU/Linux?

share|improve this question

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.