leiningen/project.clj
2011-11-19 20:44:21 -08:00

14 lines
602 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 "2.0.0-SNAPSHOT"
:description "Automate Clojure projects without setting your hair on fire."
:url "https://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License"}
:dependencies [[leiningen-core "2.0.0-SNAPSHOT"]
[clucy "0.2.2"]
[lancet "1.0.1"]
[robert/hooke "1.1.2"]]
:disable-implicit-clean true
:eval-in-leiningen true)