What am I doing wrong here?

This is from my project file:

  :dependencies [
                 [org.clojure/clojure "1.7.0"]
                 [org.clojure/test.check "0.9.0"]
                 [org.clojure/data.xml "0.1.0-beta1"]
                 [org.clojure/data.json "0.2.6"]
                 [com.taoensso/timbre "4.3.1"]
                 [overtone/at-at "1.2.0"]
                 [defun "0.3.0-RC1"]
                 [dire "0.5.4"]
                 [slingshot "0.12.2"]
                 [clj-time "0.6.0"]
                 [me.raynes/fs "1.4.6"]
                 [clj-stacktrace "0.2.7"]                 
                 [sax/sax "2.0.1"]
                 [xml-apis/xml-apis "2.0.2"]
                 [javax.xml.stream/stax-api "1.0-2"]
                 [org.apache.poi/poi "3.9"]               
                 [org.apache.poi/poi-ooxml "3.9"]
                 ]


And in my file_converter.clj file:

  (:require
   [excel-to-csv.xls :as xls]
   [excel-to-csv.xlsx :as xlsx]
   [excel-to-csv.temporal :as temporal]
   [taoensso.timbre :as timbre]
   [raynes.fs :as fs]
   [clojure.java.io :as io]
   [defun.core :refer [defun]]


I do "lein clean" and then "lein uberjar" and I get: 

Compiling excel-to-csv.core
java.io.FileNotFoundException: Could not locate raynes/fs__init.class or 
raynes/fs.clj on classpath., compiling:(file_converter.clj:1:1)
Exception in thread "main" java.io.FileNotFoundException: Could not locate 
raynes/fs__init.class or raynes/fs.clj on classpath., 
compiling:(file_converter.clj:1:1)


What?????

I suppose I could copy-and-paste the code to my own local hard drive, but I 
would like to know why this is happening. 





-- 
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
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to