-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.clj
37 lines (37 loc) · 1.74 KB
/
project.clj
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
30
31
32
33
34
35
36
37
(defproject protean "0.14.1"
:description "Take control of your RESTful API's, simulate, doc, test easily."
:url "http://github.com/passivsystems/protean"
: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"]
[org.clojure/core.incubator "0.1.4"]
[org.clojure/tools.cli "0.4.2"]
[org.clojure/tools.namespace "1.0.0"]
[ring/ring-jetty-adapter "1.8.1"]
[ring/ring-core "1.8.1"]
[ring/ring-codec "1.1.2"]
[compojure "1.6.1"]
[cheshire "5.10.0"]
[com.taoensso/timbre "4.10.0"]
[clj-http "3.10.1"]
[io.aviso/pretty "0.1.37"]
[expectations "2.1.10"]
[me.rossputin/diskops "0.8.0"]
[org.silkyweb/silk "0.14.0"]
[alandipert/enduro "1.2.0"]
[org.slf4j/slf4j-simple "1.7.30"]
[aysylu/loom "1.0.2"]
[joda-time/joda-time "2.10.1"]
[clj-time "0.15.2"]
[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"]
[json-path "2.1.0"]
[protean-api "0.14.1"]
[hawk "0.2.11"]]
:plugins [[lein-ring "0.12.5"]
[lein-expectations "0.0.8"]]
:aot :all
:uberjar-name ~(str (-> "project.clj" slurp read-string (nth 1)) "-" (-> "project.clj" slurp read-string (nth 2)) "-standalone.jar")
:main protean.cli.main)