On 11 September 2012 19:54, Thomas <[email protected]> wrote: > :dev-dependencies [[lein-cljsbuild "0.2.7"]] ; cljsbuild plugin
<snip> > having googled for this problem people who hit this in the past ran older > versions of both Clojure and lein cljsbuild (I run the latest lein2) You should use :plugins for plugins. :dev-dependencies doesn't do anything in Lein 2. e.g. :plugins [[lein-cljsbuild "0.2.7"]] This might solve your problem. - James -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
