leiningen/project.clj

18 lines
789 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.
2011-01-13 20:27:01 +00:00
(defproject leiningen "1.5.0-SNAPSHOT"
2009-11-18 07:10:25 +00:00
:description "A build tool designed not to set your hair on fire."
2010-12-03 02:16:16 +00:00
:url "https://github.com/technomancy/leiningen"
2010-06-12 22:38:48 +00:00
: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"]
2010-11-23 20:27:21 +00:00
[robert/hooke "1.1.0"]
[org.apache.maven/maven-ant-tasks "2.0.10" :exclusions [ant]]]
2010-10-26 01:54:37 +00:00
:disable-implicit-clean true
:eval-in-leiningen true)