leiningen/project.clj
Phil Hagelberg 8889ea5af9 Add Robert Hooke to Leiningen's dependencies.
It's not needed for Leiningen itself, but it makes developing plugins easier.
2010-07-17 11:11:34 -07:00

17 lines
756 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.2.0-RC2"
:description "A build tool designed not to set your hair on fire."
:url "http://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License"}
:dependencies [[org.clojure/clojure "1.2.0-beta1"]
[org.clojure/clojure-contrib "1.2.0-beta1"]
[ant/ant "1.6.5"]
[jline "0.9.94"]
[robert/hooke "1.0.2"]
[org.apache.maven/maven-ant-tasks "2.0.10"]]
:dev-dependencies [[swank-clojure "1.2.1"]]
:disable-implicit-clean true
:main leiningen.core)