Quote of the Day 0
Q: What’s the difference between Ant and Maven? <br/> A: The creator of Ant has apologised.
Q: What’s the difference between Ant and Maven? <br/> A: The creator of Ant has apologised.
Just a quick reminder on the steps I needed to take to build Clojure and install it in my local repository:
download the Maven Ant tasks, version 2.1.0 at the time of writing;
move them to $ANT_HOME/lib (this is /usr/share/ant/lib on Mac OS X);
cd to my Clojure download folder, run git pull if needed;
run ant -Dsnapshot.repo.dir=~/.m2/repository clean nightly-build, this will perform a clean build and install it into the supplied repo; this can be anywhere, the default though is /var/www/maven-snapshot-repository which is probably no good;
to also install clojure-contrib just change to it’s download directory and run mvn install.
Is simples!