leiningen/leiningen-core/project.clj

18 lines
791 B
Clojure
Raw Normal View History

(defproject leiningen-core "2.0.0-SNAPSHOT"
: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"]
2012-08-08 11:42:48 +00:00
[bultitude "0.1.7"]
[classlojure "0.6.6"]
[useful "0.8.6"]
[robert/hooke "1.1.2"]
[com.cemerick/pomegranate "0.0.13"
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"]}})