leiningen/leiningen-core/project.clj
Jean Niklas L'orange ffa700f946 Replace old HttpWagon conn-mngr setup. Fixes #1746
Bumping HttpWagon from 2.4 to 2.6 caused old methods in HttpWagon to
disappear, and along with it all the old Apache Http stuff we depended
on. This caused additional CA certificates provided in :certificates to
make Lein just fall on the floor and die.

This bumps HttpWagon to 2.9 and refactors Apache Http usage to
non-deprecated usage for the version we depend on.
2015-07-26 22:12:01 +02: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.9"]
[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"]})