-
Notifications
You must be signed in to change notification settings - Fork 1
/
deps.edn
18 lines (18 loc) · 830 Bytes
/
deps.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
quil/quil {:mvn/version "4.0.0-SNAPSHOT"}}
:aliases
{:run-m {:main-opts ["-m" "a-quil-workflow.core"]}
:run-x {:ns-default a-quil-workflow.core
:exec-fn greet
:exec-args {:name "Clojure"}}
:build {:deps {io.github.seancorfield/build-clj
{:git/tag "v0.6.3" :git/sha "9b8e09b"
;; 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"}}}}}