-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.boot
30 lines (25 loc) · 842 Bytes
/
build.boot
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
(set-env!
:resource-paths #{"src"}
:dependencies '[[org.clojure/clojure "1.8.0" :scope "provided"]
[boot/core "2.6.0" :scope "provided"]
[org.clojure/tools.namespace "0.2.11"]
[adzerk/bootlaces "0.1.13" :scope "test"]])
(require '[adzerk.bootlaces :refer :all])
(def +version+ "0.1.0")
(bootlaces! +version+ :dont-modify-paths? true)
(task-options!
pom {:project 'samestep/boot-refresh
:version +version+
:description "Boot task to reload code using clojure.tools.namespace."
:url "https://github.com/samestep/boot-refresh"
:scm {:url "https://github.com/samestep/boot-refresh"}
:license {"MIT License" "https://opensource.org/licenses/MIT"}})
(deftask dev
"Dev process"
[]
(comp
(watch)
(repl :server true)
(pom)
(jar)
(install)))