leiningen/project.clj

34 lines
1.7 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.
2012-08-16 20:17:59 +00:00
(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"}
2012-08-16 20:17:59 +00:00
:dependencies [[leiningen-core "2.0.0-SNAPSHOT"]
[org.clojure/data.xml "0.0.3"]
2012-07-04 05:37:42 +00:00
[bultitude "0.1.7"]
[org.apache.maven.indexer/indexer-core "4.1.3"
:exclusions [org.apache.maven/maven-model
org.sonatype.aether/aether-api
org.sonatype.aether/aether-util]]
[reply "0.1.0-beta10" :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"]
2012-08-16 18:02:13 +00:00
;; work around Clojure bug http://dev.clojure.org/jira/browse/CLJ-1034
:uberjar-exclusions [#"^data_readers.clj$"]
:eval-in :leiningen)