leiningen/leiningen-core/project.clj
Hugo Duncan cc335da313 Simplify deploy
This takes advantage of the coordinate merging in pomegranate.aether/deploy.
2013-02-08 11:10:01 -05:00

17 lines
767 B
Clojure

(defproject leiningen-core "2.1.0-SNAPSHOT"
:url "https://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:description "Library for core functionality of Leiningen."
:dependencies [[org.clojure/clojure "1.4.0"]
[bultitude "0.1.7"]
[classlojure "0.6.6"]
[useful "0.8.6"]
[robert/hooke "1.3.0"]
[com.cemerick/pomegranate "0.0.14-SNAPSHOT"]]
:scm {:dir ".."}
;; 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"
:profiles {:dev {:resource-paths ["dev-resources"]}})