leiningen/project.clj
Travis Vachon b40b8575d4 Add ant-nodeps as a dependency to pull in symlink task
The symlink task appears to have moved to ant-nodeps in ant 1.7.1,
which means that :jar-strategy :symlink is currently broken. Add
ant-nodeps as a dependency to get this working again.
2011-01-21 00:29:07 -05:00

17 lines
789 B
Clojure

;; The only requirement of the project.clj file is that it includes a
;; defproject form. It can have other code in it as well, including
;; loading other task definitions.
(defproject leiningen "1.5.0-SNAPSHOT"
:description "A build tool designed not to set your hair on fire."
:url "https://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License"}
:dependencies [[org.clojure/clojure "1.2.0"]
[org.clojure/clojure-contrib "1.2.0"]
[org.apache.ant/ant "1.7.1"]
[org.apache.ant/ant-nodeps "1.7.1"]
[jline "0.9.94"]
[robert/hooke "1.1.0"]
[org.apache.maven/maven-ant-tasks "2.0.10" :exclusions [ant]]]
:disable-implicit-clean true
:eval-in-leiningen true)