-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeps.edn
27 lines (22 loc) · 981 Bytes
/
deps.edn
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
{:paths ["src" "test"]
:deps
{
fooheads/hide-clj {:git/url "https://github.com/fooheads/hide-clj.git"
:sha "f04fa6ebcf92cce33b11a773a6ff4c372c254272"}
clojure-msgpack/clojure-msgpack {:mvn/version "1.2.0"}
mvxcvi/puget {:mvn/version "1.3.1"}
org.clojure/core.async {:mvn/version "1.1.587"}
org.clojure/tools.namespace {:mvn/version "1.4.4"}
com.widdindustries/time-literals {:mvn/version "0.1.10"}}
:aliases
{:dev {:extra-deps
{fooheads/hide-clj {:local/root "../hide-clj"}}}
:hide {:main-opts ["-m" "fooheads.hide-nvim"]}
:test {:extra-paths ["test/src"]
:extra-deps
{lambdaisland/kaocha {:mvn/version "0.0-573"}
lambdaisland/kaocha-junit-xml {:mvn/version "0.0-70"}}
:main-opts ["-m" "kaocha.runner"
"--plugin" "capture-output"
"--plugin" "junit-xml"
"--junit-xml-file" "test-results/kaocha/unit-test-result.xml"]}}}