leiningen/leiningen-core/project.clj
Stephen Nelson f413b6d73f Add support for reader conditional files (cljc)
Clojure 1.7.0 will add support for reader conditionals:

http://dev.clojure.org/display/design/Reader+Conditionals

This patch adds reader conditional support to leiningen, in particular for
compilation (including aot and stale files) and testing.
2015-07-19 08:52:49 +12:00

17 lines
793 B
Clojure

(defproject leiningen-core "2.5.2-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.7.0"]
[bultitude "0.2.8"]
[classlojure "0.6.6"]
[robert/hooke "1.3.0"]
[com.cemerick/pomegranate "0.3.0"]
[org.apache.maven.wagon/wagon-http "2.7"]
[com.hypirion/io "0.3.1"]
[pedantic "0.2.0"]]
:scm {:dir ".."}
:dev-resources-path "dev-resources"
:aliases {"bootstrap" ["with-profile" "base"
"do" "install," "classpath" ".lein-bootstrap"]})