I am getting this error and cannot find out what I've done wrong. Any pointers would be very appreciated.
Exception in thread "main" java.lang.NoClassDefFoundError: test_csv I have built the project in test_csv successfully using cake. project.clj -------------- (defproject test_csv "0.1" :dependencies [[org.clojure/clojure "1.2.1"] [org.clojure/clojure-contrib "1.2.0"] [clojure-csv/clojure-csv "1.2.4"]] :main test_csv) test_csv.clj ----------------- (ns test_csv (:import (java.io BufferedReader FileReader) (:use clojure-csv.core)) (defn -main [& args] (println "Hello world!")) -- 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