-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
22 lines (21 loc) · 889 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
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
;; Web-Scraping
enlive/enlive {:mvn/version "1.1.6"}
;; Logging
com.taoensso/timbre {:mvn/version "6.1.0"}}
:aliases
{:run-m {:main-opts ["-m" "main"]}
:run-x {:ns-default main
:exec-fn -main
:exec-args {:name "Clojure"}}
:build {:deps {io.github.seancorfield/build-clj
{:git/tag "v0.8.2" :git/sha "0ffdb4c"
;; since we're building an app uberjar, we do not
;; need deps-deploy for clojars.org deployment:
:deps/root "slim"}}
:ns-default build}
:test {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
io.github.cognitect-labs/test-runner
{:git/tag "v0.5.0" :git/sha "48c3c67"}}}}}