-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdeps.edn
More file actions
24 lines (23 loc) · 1.5 KB
/
deps.edn
File metadata and controls
24 lines (23 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{:deps {}
:aliases {:dev {:extra-paths ["dev" "test"]
:extra-deps {org.clojure/clojure {:mvn/version "1.12.0"}
io.github.cognitect-labs/test-runner {:git/tag "v0.5.0" :git/sha "b3fd0d2"}
io.github.clojure/tools.build {:git/tag "v0.8.4" :git/sha "8c3cd69"}
slipset/deps-deploy {:mvn/version "0.2.0"}
io.github.nextjournal/clerk {:mvn/version "0.17.1102"}
integrant/integrant {:mvn/version "0.8.0"}
com.clojure-goes-fast/clj-async-profiler {:mvn/version "1.6.1"}}
:jvm-opts ["-Djdk.attach.allowAttachSelf"]}
:test {:extra-paths ["test"]
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test}
:build {:exec-fn build/all}
:deploy {:exec-fn deps-deploy.deps-deploy/deploy
:exec-args {:installer :remote
:artifact "target/di.jar"}}
:doc {:exec-fn nextjournal.clerk/build!
:exec-args {:index "notebooks/index.clj"
:paths ["notebooks/*.clj" "test/**/*.clj"]
:out-path "public"}}}}
;; clj -T:dev:build
;; clj -T:dev:deploy