leiningen/leiningen-core/project.clj

17 lines
755 B
Clojure
Raw Normal View History

2012-06-03 04:07:35 +00:00
(defproject leiningen-core "2.0.0-preview6"
:url "https://github.com/technomancy/leiningen"
2012-02-09 06:55:48 +00:00
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:description "Library for core functionality of Leiningen."
2012-04-18 05:07:04 +00:00
:dependencies [[org.clojure/clojure "1.4.0"]
2011-12-08 23:42:39 +00:00
[classlojure "0.6.5"]
[robert/hooke "1.1.2"]
2012-05-31 04:07:18 +00:00
[ordered "1.2.0"]
2012-05-06 19:37:20 +00:00
[com.cemerick/pomegranate "0.0.12"
2012-02-24 23:38:10 +00:00
:exclusions [org.slf4j/slf4j-api]]]
2012-06-02 04:44:09 +00:00
;; This is only used when releasing Leiningen. Can't put it in a
;; profile since it must be installed using lein1
;;:aot :all
:dev-resources-path "dev-resources"
2012-06-02 04:44:09 +00:00
:profiles {:dev {:resource-paths ["dev-resources"]}})