forked from walmartlabs/lacinia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
22 lines (22 loc) · 1.17 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
(defproject com.walmartlabs/lacinia "0.18.0"
:description "A GraphQL server implementation in Clojure"
:license {:name "Apache, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:plugins [[lein-codox "0.10.3"]
[test2junit "1.2.5"]]
:dependencies [[org.clojure/clojure "1.8.0"]
[clojure-future-spec "1.9.0-alpha14"]
[clj-antlr "0.2.4"]
[org.flatland/ordered "1.5.4"
:exclusions [org.clojure/tools.macro]]]
:profiles {:dev {:dependencies [[criterium "0.4.4"]
[org.clojure/test.check "0.9.0"]
[joda-time "2.9.7"]
[org.clojure/data.csv "0.1.3"]
[org.clojure/tools.cli "0.3.5"]
[org.clojure/data.json "0.2.6"]]}}
:aliases {"benchmarks" ["run" "-m" "perf"]}
:jvm-opts ["-Xmx1g"]
:test2junit-output-dir ~(or (System/getenv "CIRCLE_TEST_REPORTS") "target/test2junit")
:codox {:source-uri "https://github.com/walmartlabs/lacinia/blob/master/{filepath}#L{line}"
:metadata {:doc/format :markdown}})