-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
deps.edn
39 lines (30 loc) · 1.4 KB
/
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
30
31
32
33
34
35
36
37
38
39
;; to run the tests, use: clojure -T:build test
;; - that compiles selmer.node prior to running tests but that isn't strictly
;; necessary, and you can run basic tests with: clojure -X:dev:test
;; to run a basic development REPL, use: clj -A:dev
;; to run a development REPL with tests available, use: clj -A:dev:test
;; to AOT-compile selmer.node, prior to working, use: clojure -T:build prep
;; to get help for the build.clj script, use: clojure -T:build:deps help/doc :ns build
{:paths ["src" "resources" "target/classes"]
:deps/prep-lib ; allow for use via git deps: clojure -X:deps prep
;; see https://clojure.org/guides/deps_and_cli#prep_libs for more detail
{:alias :build
:fn prep
:ensure "target/classes"}
:aliases
{:build ; to use build.clj
{:replace-deps
{io.github.seancorfield/build-clj {:git/tag "v0.8.2" :git/sha "0ffdb4c"}}
:ns-default build}
:dev ; for development (REPL, etc)
{:extra-paths ["dev"]
:extra-deps {json-html/json-html {:mvn/version "0.4.7"}
cheshire/cheshire {:mvn/version "5.11.0"}
environ/environ {:mvn/version "1.2.0"}
org.clojure/tools.namespace {:mvn/version "1.3.0"}}}
:test ; for testing
{:extra-paths ["test"]
:extra-deps {;; test dependencies
lambdaisland/kaocha {:mvn/version "1.75.1190"}
criterium/criterium {:mvn/version "0.4.6"}}
:main-opts ["-m" "kaocha.runner"]}}}