Clojure/Leiningen/Eclipse (and Java) newby. I'm trying to get Eclipse to load a Clojure/Leiningen project, and I'm seeing confusing/contradictory results searching for Lein plugin solutions.
Eclipse IDE for Java Developers Version: Juno Service Release 2 Build id: 20130225-0426 (Windows 8)
I've got the following user profile in .lein\profiles.clj
{:user {:plugins [ [lein-eclipse "1.0.0"]
]}}
And the following Leiningen project file:
(defproject firstclojureproj "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [
[org.clojure/clojure "1.5.1"]
[lein-eclipse "1.0.0"]
]
)
Doing a lein help I get the following (which I think is the root of my problem)
leiningen.eclipse Problem loading: Could not locate clojure/contrib/duck_streams__init.class or clojure/contrib/duck_streams.clj on classpath:
Also when I attempt to Import / Existing Projects into Workspace / and select the folder with my Leiningen project, the folder appears grayed-out with a check box and I cannot select it.