-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
35 lines (29 loc) · 1 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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Project Configuration with Hotload
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Hotload requires
#_(ns deps.edn
(:require [clojure.tools.deps.alpha.repl :refer [add-libs]]))
;; Project configuration
{:paths
["src" "resources"]
:deps
#_ (add-libs)
{org.clojure/clojure {:mvn/version "1.10.1"}
http-kit/http-kit {:mvn/version "2.5.1"}
hiccup/hiccup {:mvn/version "2.0.0-alpha2"}}
:aliases
{
:test
{:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.0.0"}}}
:runner
{:extra-deps {com.cognitect/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner"
:sha "b6b3193fcc42659d7e46ecd1884a228993441182"}}
:main-opts ["-m" "cognitect.test-runner"
"-d" "test"]}
:uberjar
{:extra-deps {seancorfield/depstar {:mvn/version "1.1.128"}}
:main-opts ["-m" "hf.depstar.uberjar" "hot-loading.jar"
"-C" "-m" "practicalli.hot-loading"]}}}