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, rungit 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 runmvn install
.
Is simples!