-
Website
http://justin.harmonize.fm/ -
Original page
http://justin.harmonize.fm/index.php/2009/07/java-please-stop-ruining-my-fun/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
maacl
1 comment · 2 points
-
davezor
1 comment · 1 points
-
aaronasjones
1 comment · 1 points
-
mebaran
1 comment · 1 points
-
miami web designer
1 comment · 1 points
-
-
Popular Threads
Granted, it's a little bit of messing around but you'll only have to do it once and then you can just type `clj` from anywhere in your shell and be in the REPL. Extra libraries can be easily added on a per-project basis by adding their names to a `.clojure` file in the project's directory. When you run `clj` in this directory all the named paths or jars are automatically added.
Hope that eases the pain somewhat.
Regards,
Mark.
You can run "mvn process-resources" and Maven will unpack all your dependencies into the target/dependency directory. That way you can keep your classpath simple.
You can also check out Corkscrew, which is a project I've created to handle dependencies for Clojure projects without writing any icky XML or knowing anything about Maven. (It uses Maven under the covers, but you don't have to touch it.) http://github.com/technomancy/corkscrew
It's still pretty early in the development stage, but it already makes things easier for me.
I have to admit, I do miss the convenience of Rubygems.....