forked from technomancy/leiningen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
23 lines (23 loc) · 1.13 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(defproject leiningen-core "2.1.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.1" :exclusions [dynapath]]
[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
[org.tcrawley/dynapath "0.2.3"]
[org.apache.maven.wagon/wagon-http "2.4"]]
;; 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"
:profiles {:dev {:resource-paths ["dev-resources"]}})