-
Notifications
You must be signed in to change notification settings - Fork 15
/
project.clj
56 lines (48 loc) · 2.6 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
(defproject metosin/kekkonen-parent "0.5.3-SNAPSHOT"
:description "A lightweight, remote api library for Clojure."
:url "https://github.com/metosin/kekkonen"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v20.html"}
:scm {:name "git"
:url "https://github.com/metosin/kekkonen"}
:managed-dependencies [[metosin/kekkonen "0.5.3-SNAPSHOT"]
[metosin/kekkonen-core "0.5.3-SNAPSHOT"]
[prismatic/plumbing "0.5.4"]
[prismatic/schema "1.1.6"]
[frankiesardo/linked "1.2.9"]
;; http-stuff, separate module?
[clj-commons/clj-yaml "0.7.0"]
[metosin/ring-swagger "0.24.0"]
[metosin/ring-swagger-ui "2.2.10"]
[metosin/ring-http-response "0.9.0"]
[metosin/muuntaja "0.3.1"]
[ring/ring-defaults "0.3.0"]
;; client stuff, separate module?
[clj-http "2.3.0"]]
:profiles {:dev {:plugins [[lein-cloverage "1.0.10"]
[lein-midje "3.2.1"]]
:source-paths ["dev-src"
"modules/kekkonen-core/src"]
:dependencies [[org.clojure/clojure "1.10.1"]
[criterium "0.4.4"]
[http-kit "2.3.0"]
[midje "1.9.9"]
[prismatic/plumbing]
[prismatic/schema]
[frankiesardo/linked]
[clj-commons/clj-yaml]
[metosin/muuntaja]
[metosin/ring-http-response]
[metosin/ring-swagger]
[metosin/ring-swagger-ui]
[clj-http]
; uploads
[javax.servlet/servlet-api "2.5"]]}
:perf {:jvm-opts ^:replace ["-Dclojure.compiler.direct-linking=true"]}
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}}
:deploy-repositories [["releases" :clojars]]
:aliases {"all" ["with-profile" "dev:dev,1.8:dev,1.9"]
"perf" ["with-profile" "default,dev,perf"]
"test-ancient" ["midje"]
"coverage" ["cloverage" "--runner" ":midje"]})