leiningen/project.clj

15 lines
602 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-07-16 21:50:16 +00:00
(defproject leiningen "2.0.0-SNAPSHOT"
:description "Automate Clojure projects without setting 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 [[leiningen-core "2.0.0-SNAPSHOT"]
2011-07-06 16:05:09 +00:00
[clucy "0.2.2"]
2011-06-23 03:13:27 +00:00
[lancet "1.0.1"]
[robert/hooke "1.1.2"]]
2010-10-26 01:54:37 +00:00
:disable-implicit-clean true
:eval-in-leiningen true)