: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]
[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.