forked from ring-clojure/ring-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
20 lines (20 loc) · 935 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject ring/ring-mock "0.3.2"
:description "A library for creating mock Ring request maps"
:url "https://github.com/ring-clojure/ring-mock"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.5.1"]
[cheshire "5.8.0"]
[ring/ring-codec "1.0.1"]]
:plugins [[lein-codox "0.10.3"]]
:codox
{:project {:name "Ring-Mock"}
:output-path "codox"
:source-uri "https://github.com/ring-clojure/ring-mock/blob/{version}/{filepath}#L{line}"}
:aliases {"test-all" ["with-profile" "default:+1.6:+1.7:+1.8:+1.9" "test"]}
:profiles
{:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
:1.9 {:dependencies [[org.clojure/clojure "1.9.0-RC1"]
[ring/ring-spec "0.0.3"]]}})