-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
29 lines (29 loc) · 1.35 KB
/
project.clj
File metadata and controls
29 lines (29 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(defproject protean-api "0.14.1"
:description "Protean API."
:url "http://github.com/passivsystems/protean-api"
:license {:name "Apache License v2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/data.xml "0.0.8"]
[cheshire "5.10.0"]
[clj-http "3.10.1"]
[org.tcrawley/dynapath "0.2.5"] ;; Fixes Could not find a suitable classloader to modify from clojure.lang.LazySeq
[com.cemerick/pomegranate "1.1.0"]
[com.gfredericks/test.chuck "0.2.9"]
[com.github.java-json-tools/json-schema-validator "2.2.14"]
[com.taoensso/timbre "4.10.0"]
[environ "1.2.0"]
[expectations "2.1.10"]
[io.aviso/pretty "0.1.37"]
[overtone/at-at "1.2.0"]
[yaclot "0.1.5"]
[me.rossputin/diskops "0.8.0"]]
:plugins [[lein-expectations "0.0.8"]
[lein-codox "0.10.7"]]
:codox {:namespaces [protean.api.protocol.http
protean.api.generation.generate
protean.api.generation.json
protean.api.transformation.sim
protean.api.transformation.coerce]}
:aot :all)