leiningen/project.clj

31 lines
1.5 KiB
Clojure
Raw Normal View History

;; This is Leiningen's own project configuration. See doc/TUTORIAL.md
;; file as well as sample.project.clj for help writing your own.
(defproject leiningen "2.0.0-SNAPSHOT"
:description "Automate Clojure projects without setting your hair on fire."
2010-12-03 02:16:16 +00:00
: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"}
:dependencies [[leiningen-core "2.0.0-SNAPSHOT"]
2012-07-04 05:37:42 +00:00
[clucy "0.3.0"]
[org.clojure/data.xml "0.0.3"]
2012-07-04 05:37:42 +00:00
[bultitude "0.1.7"]
[reply "0.1.0-beta8"]
;; once reply bumps its drawbridge dep we can collapse these
[com.cemerick/drawbridge "0.0.6" :exclusions [ring/ring-core]]
2012-06-01 04:20:42 +00:00
[clj-http "0.4.2"]]
;; checkout-deps don't work with :eval-in :leiningen
:profiles {:dev {:resource-paths ["leiningen-core/dev-resources"]
:test-paths ["leiningen-core/test"]}
2012-05-12 01:07:07 +00:00
:release {:aot [#"leiningen"
cemerick.pomegranate
cemerick.drawbridge
classlojure.core
clojure.tools.nrepl
clj-http.core
ordered.map]}}
:test-selectors {:default (complement :post-preview)
2012-03-16 18:34:14 +00:00
:offline (complement :online)}
:source-paths ["leiningen-core/src" "src"]
:eval-in :leiningen)