-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
18 lines (17 loc) · 932 Bytes
/
deps.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{:paths ["src/main"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
markdown-clj/markdown-clj {:mvn/version "1.10.5"}
;; git dep for pulling version
clj-jgit/clj-jgit {:mvn/version "1.0.1"}
selmer/selmer {:mvn/version "1.12.59"}}
:aliases
{:convert {:exec-fn com.yetanalytics.markdoc/convert
:exec-args {:in-root "dev-resources/md-samples/"
:out-root "target/sample/doc/"}}
:test {:extra-paths ["src/test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.0"}
io.github.cognitect-labs/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner"
:sha "dd6da11611eeb87f08780a30ac8ea6012d4c05ce"}
org.clojure/tools.logging {:mvn/version "1.1.0"}}
:exec-fn cognitect.test-runner.api/test}}}