forked from technomancy/leiningen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
21 lines (21 loc) · 1.08 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject leiningen-core "2.8.4-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."
;; If you update these, update resources/leiningen/bootclasspath-deps.clj too
:dependencies [[org.clojure/clojure "1.8.0"]
[timofreiberg/bultitude "0.3.0"
:exclusions [org.clojure/clojure]]
[org.flatland/classlojure "0.7.1"]
[robert/hooke "1.3.0"]
[com.cemerick/pomegranate "1.1.0"
:exclusions [org.slf4j/jcl-over-slf4j]]
[com.hypirion/io "0.3.1"]
[org.slf4j/slf4j-nop "1.7.25"] ; wagon-http uses slf4j
;; 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"]})