-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
29 lines (24 loc) · 902 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
27
28
29
{:paths ["src/clj" "src/js" "src/cljc"
"test/unit" "test/integration" "test/regression"]
:deps
{;; Fundamental
medley/medley {:mvn/version "1.4.0"}
org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/core.async {:mvn/version "1.5.648"}
;; File system
babashka/fs {:mvn/version "0.1.6"}
hawk/hawk {:mvn/version "0.2.11"}
;; Html rendering
com.eclipsesource.j2v8/j2v8_linux_x86_64 {:mvn/version "4.8.0"}
hiccup/hiccup {:mvn/version "1.0.5"}
;; Test
com.gfredericks/test.chuck {:mvn/version "0.2.13"}
org.clojure/test.check {:mvn/version "1.1.1"}
http-kit/http-kit {:mvn/version "2.6.0"} ; for HTTP client to test server
;; etc
clj-commons/clj-yaml {:mvn/version "1.0.26"}
cprop/cprop {:mvn/version "0.1.19"}}
:aliases
{;; Run with clj -T:build clean|uber
:build {:deps {org.clojure/tools.build {:mvn/version "0.9.2"}}
:ns-default build}}}