2009/12/12 rebcabin <bc.beck...@gmail.com>: > Well, the 3d test applications from https://j3d-webstart.dev.java.net/test/
Java Webstart works differently to something run from the command line. When you click on the link it downloads a .jnlp file that, I believe, mentions all the dependencies. > work correctly and every other Java test I've tried works, but I am > not sure how to find out what's on the CLASSPATH. Is CLASSPATH an > environment variable? If so, I don't have any binding for it, but then > the immediate question would be "how can ANY Java stuff work at all?" > Or is CLASSPATH set up somewhere and somehow else? CLASSPATH can be an environment variable, although, I'm not sure what exactly expects it to be one. Normally I use the -cp option to the java command to set the classpath, like this: $ java -cp /path/to/clojure.jar:/path/to/clojure-contrib.jar:/path/to/j3d-core.jar clojure.main or C:\> java -cp c:\path\to\clojure.jar;c:\path\to\clojure-contrib.jar;c:\path\to\j3d-core.jar clojure.main Perhaps a Java person can give you a better answer. The way forward appears to be leiningen, in which case devender's answer might be the best one. -- Michael Wood <esiot...@gmail.com> -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en