On Tue, Apr 3, 2012 at 11:39 PM, uMany <elm...@gmail.com> wrote:
> Hi everybody
> Everything was working great and just today, while trying to make a simple
> "lein new foobar" I got this error:
> Exception in thread "main" java.lang.IllegalAccessError: render does not
> exist (default.clj:1)

The JVM is loading an older version of a class, and the code is then
trying to call a method added in a newer version.

So, the version of some dependency of another dependency is wrong,
most likely -- for instance, if your project.clj calls for a 1.3
contrib library and Clojure 1.2, or something like that.

If lein deps doesn't fix things then try remaking the project.clj from
scratch based on what you are using in that project. It could also be
a bug in one of the dependencies, I suppose.

-- 
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

Reply via email to