leiningen/project.clj

18 lines
779 B
Clojure
Raw Normal View History

;; 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.
2010-09-08 21:06:17 +00:00
(defproject leiningen "1.4.0-SNAPSHOT"
2009-11-18 07:10:25 +00:00
:description "A build tool designed not to set your hair on fire."
:url "http://github.com/technomancy/leiningen"
2010-06-12 22:38:48 +00:00
:license {:name "Eclipse Public License"}
:dependencies [[org.clojure/clojure "1.3.0-alpha1"]
[org.clojure.contrib/complete "1.3.0-alpha1" :classifier "bin"]
[ant/ant "1.7.1"]
[jline "0.9.94"]
[robert/hooke "1.0.2"]
[org.apache.maven/maven-ant-tasks "2.0.10"
:exclusions [ant/ant]]]
2010-10-26 01:54:37 +00:00
:disable-implicit-clean true
:eval-in-leiningen true)