leiningen/project.clj

18 lines
761 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-07-22 06:14:14 +00:00
(defproject leiningen "1.2.1-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.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"]]
2010-06-05 21:00:37 +00:00
:dev-dependencies [[swank-clojure "1.2.1"]]
:disable-implicit-clean true
:main leiningen.core)