I've been unable to find a .jar for the new google-closure-library for use with clojurescript.
(source code downloads are available here: http://code.google.com/p/closure-library/downloads/list)
I've also tried (unsuccessfully) compiling it through closurebuilder. (I've tried compiling it with the deps.js as recommended but that is not working either).
If anyone can point me to the 2029 jar or teach me how to compile it from source that would be great.
Thanks!
EDIT: to clarify, I do not mean the the closure compiler I mean a .jar such as found here: http://mvnrepository.com/artifact/org.clojure/google-closure-library
You can easily jar the closure library to any version of your choice.
Just read up on how to jar a dir from the java docs found elsewhere. When you are done with that, you then use
mvn install:install-file -DgroupId="foo" -DproductId="bar" -Dversion="baz" -Dpackaging=jar -Dfile="the jarred file"
to install it to your local .m2 repo. Lein should then be able to pull it in as needed.
Hope it helps.