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/libon Mac OS X); cdto my Clojure download folder, rungit pullif 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-repositorywhich is probably no good; - to also install
clojure-contribjust change to it’s download directory and runmvn install.
Is simples!