leiningen/leiningen-core/project.clj
2013-08-08 20:16:54 -07:00

23 lines
1.1 KiB
Clojure

(defproject leiningen-core "2.4.0-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.5.1"]
[bultitude "0.2.2"]
[classlojure "0.6.6"]
[robert/hooke "1.3.0"]
[com.cemerick/pomegranate "0.2.0"]
[org.apache.maven.wagon/wagon-http "2.4"]
[com.hypirion/io "0.3.1"]
[pedantic "0.1.0"]]
;; until the pomegratate snapshot is released:
:repositories [["sonatype"
"https://oss.sonatype.org/content/repositories/snapshots/"]]
:scm {:dir ".."}
;; This is only used when releasing Leiningen. Can't put it in a
;; profile since it must be installed using lein1
;;:aot :all
:dev-resources-path "dev-resources"
:aliases {"bootstrap" ["with-profile" "base"
"do" "install," "classpath" ".lein-bootstrap"]})