forked from whostolebenfrog/rest-cljer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
20 lines (17 loc) · 875 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject rest-cljer "0.2.2-SNAPSHOT"
:description "A Clojure wrapper for the rest driver library"
:url "https://github.com/whostolebenfrog/rest-cljer"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[cheshire "5.8.0"]
[clj-http "3.8.0"]
[com.github.rest-driver/rest-client-driver "1.1.42" :exclusions [org.slf4j/slf4j-nop]]
[environ "1.1.0"]
[junit "4.12"]
[org.clojure/clojure "1.8.0"]]
:deploy-repositories [["releases" :clojars]]
:profiles {:dev {:plugins [[lein-midje "3.1.0"]
[pjstadig/humane-test-output "0.8.2"]
[lein-rpm "0.0.4"]]
:dependencies [[midje "1.9.1"]
[speclj "3.3.2"]]}})