leiningen/project.clj

16 lines
679 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-02-27 00:10:30 +00:00
(defproject leiningen "1.2.0-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"
:dependencies [[org.clojure/clojure "1.1.0"]
[org.clojure/clojure-contrib "1.1.0"]
2010-03-17 04:06:34 +00:00
[ant/ant "1.7.0"]
[jline "0.9.94"]
2010-03-17 04:06:34 +00:00
[org.apache.maven/maven-ant-tasks "2.1.0"]]
:dev-dependencies [[leiningen/lein-swank "1.1.0"]
2010-01-21 07:21:22 +00:00
[autodoc "0.7.0"]]
:main leiningen.core)