-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
51 lines (39 loc) · 1.27 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
(defproject clj-okhttp/clj-okhttp "0.1.2-SNAPSHOT"
:description
"A fast and lightweight clojure http client constructed on top of OkHttp."
:url
"https://github.com/rutledgepaulv/clj-okhttp"
:license
{:name "MIT License" :url "http://opensource.org/licenses/MIT" :year 2020 :key "mit"}
:scm
{:name "git" :url "https://github.com/rutledgepaulv/clj-okhttp"}
:pom-addition
[:developers
[:developer
[:name "Paul Rutledge"]
[:url "https://github.com/rutledgepaulv"]
[:email "rutledgepaulv@gmail.com"]
[:timezone "-5"]]]
:deploy-repositories
[["releases" :clojars]
["snapshots" :clojars]]
:dependencies
[[org.clojure/clojure "1.10.3"]
[metosin/muuntaja "0.6.8"]
[metosin/jsonista "0.3.5"]
[com.squareup.okhttp3/okhttp "4.9.2"]]
:profiles
{:test {:resource-paths ["testfiles"]
:dependencies [[clj-http "3.12.3"]
[cheshire "5.10.2"]
[criterium "0.4.6"]
[org.slf4j/slf4j-simple "1.7.36"]
[org.testcontainers/testcontainers "1.16.3"]]}}
:cloverage
{:selector [:coverage]}
:test-selectors
{:coverage (complement :performance)}
:plugins
[[lein-cloverage "1.1.2"]]
:repl-options
{:init-ns clj-okhttp.core})