forked from amitrathore/conjure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
21 lines (17 loc) · 781 Bytes
/
project.clj
File metadata and controls
21 lines (17 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(def common-deps '[])
(defproject org.clojars.runa/conjure "2.2.0"
:description "Conjure mocking and stubbing"
:dependencies ~(cons '[org.clojure/clojure "1.3.0"]
common-deps)
:dev-dependencies [[jonase/kibit "0.0.3"]
[jonase/eastwood "0.0.2"]
[lein-multi "1.1.0"]]
:plugins [[lein-swank "1.4.4"]
[lein-difftest "1.3.8"]]
:multi-deps {"1.2.0" [[org.clojure/clojure "1.2.0"]]
"1.2.1" [[org.clojure/clojure "1.2.1"]]
"1.3.0" [[org.clojure/clojure "1.3.0"]]
"1.4.0" [[org.clojure/clojure "1.4.0"]]
"1.5.0" [[org.clojure/clojure "1.5.0-alpha3"]]
:all ~common-deps})
(def common-deps '[[org.clojure/tools.logging "0.2.3"]])