-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
33 lines (28 loc) · 1.16 KB
/
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
27
28
29
30
31
32
33
{:deps
{com.fooheads/stdlib {:mvn/version "0.4.6"}
metosin/malli {:mvn/version "0.15.0"}}
:aliases
{:dev
{:extra-paths ["dev"]
:extra-deps
{fooheads/trebl {:git/url "https://github.com/fooheads/trebl.git"
:git/sha "64c670e316c79ab0f80583ea12375abb4a429368"}}}
:test
{:extra-paths ["test"]
:extra-deps {lambdaisland/kaocha {:mvn/version "1.0.632"}
lambdaisland/kaocha-junit-xml {:mvn/version "0.0-70"}
com.fooheads/test {:mvn/version "0.1.4"}}
:main-opts ["-m" "kaocha.runner"
"--plugin" "capture-output"
"--plugin" "junit-xml"
"--junit-xml-file" "target/test-results/kaocha/unit-test-result.xml"]}
:examples
{:extra-paths ["examples"]
:extra-deps {cheshire/cheshire {:mvn/version "5.10.0"}
clj-http/clj-http {:mvn/version "3.10.1"}
com.h2database/h2 {:mvn/version "1.4.200"}
datawalk/datawalk {:mvn/version "0.1.12"}
seancorfield/next.jdbc {:mvn/version "1.0.7"}}}
:build
{:deps {com.fooheads/build-clj {:mvn/version "1.0.0"}}
:ns-default fooheads.build}}}