leiningen/project.clj

15 lines
636 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.
2009-11-18 07:10:25 +00:00
(defproject leiningen "0.5.0"
:description "A build tool designed not to set your hair on fire."
:main leiningen.core
:dependencies [[org.clojure/clojure "1.1.0-alpha-SNAPSHOT"]
[org.clojure/clojure-contrib "1.0-SNAPSHOT"]
[ant/ant-launcher "1.6.2"]
[org.apache.maven/maven-ant-tasks "2.0.10"]]
;; Wait till this makes it to a public repo.
;; :dev-dependencies [[org.clojure/swank-clojure "1.0"]]
)