leiningen/leiningen-core/project.clj

25 lines
1.3 KiB
Clojure
Raw Permalink Normal View History

2017-10-27 21:46:11 +00:00
(defproject leiningen-core "2.8.2-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."
;; If you update these, update resources/leiningen/bootclasspath-deps.clj too
2016-01-21 10:08:58 +00:00
:dependencies [[org.clojure/clojure "1.8.0"]
[bultitude "0.2.8" :exclusions [org.tcrawley/dynapath]]
2017-01-21 00:18:10 +00:00
[org.flatland/classlojure "0.7.1"]
[robert/hooke "1.3.0"]
2017-10-23 22:15:45 +00:00
[com.cemerick/pomegranate "0.4.0"
:exclusions [org.tcrawley/dynapath
org.codehaus.plexus/plexus-utils]]
2017-10-27 19:08:45 +00:00
[org.tcrawley/dynapath "1.0.0"]
[org.apache.maven.wagon/wagon-http "2.12"
:exclusions [org.apache.maven.wagon/wagon-provider-api]]
2013-07-30 14:01:35 +00:00
[com.hypirion/io "0.3.1"]
[org.slf4j/slf4j-nop "1.7.22"] ; wagon-http uses slf4j
2017-01-18 21:29:19 +00:00
;; we pull this in transitively but want a newer version
[org.clojure/tools.macro "0.1.5"]]
:scm {:dir ".."}
:dev-resources-path "dev-resources"
:aliases {"bootstrap" ["with-profile" "base"
"do" "install," "classpath" ".lein-bootstrap"]})