leiningen/leiningen-core/project.clj

26 lines
1.2 KiB
Clojure
Raw Normal View History

2013-01-20 04:39:17 +00:00
(defproject leiningen-core "2.1.0-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."
2013-03-12 16:37:10 +00:00
:dependencies [[org.clojure/clojure "1.5.1"]
[bultitude "0.2.2"]
[classlojure "0.6.6"]
[useful "0.8.6"]
[robert/hooke "1.3.0"]
[com.cemerick/pomegranate "0.0.14-SNAPSHOT" :exclusions [org.tcrawley/dynapath]]
;; depend on this directly until pomegranate upgrades
2013-03-07 17:09:48 +00:00
[org.tcrawley/dynapath "0.2.3"]
[org.apache.maven.wagon/wagon-http "2.4"]
2013-03-16 22:20:13 +00:00
[com.hypirion/io "0.2.0-RC1"]]
;; until the pomegratate snapshot is released:
:repositories [["sonatype"
"https://oss.sonatype.org/content/repositories/snapshots/"]]
:scm {:dir ".."}
2012-06-02 04:44:09 +00:00
;; 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" ["do" "install," "classpath" ".lein-bootstrap"]}
2012-06-02 04:44:09 +00:00
:profiles {:dev {:resource-paths ["dev-resources"]}})