-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.boot
30 lines (24 loc) · 856 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.6.0" :scope "provided"]
[boot/core "2.0.0-rc14" :scope "provided"]
[adzerk/bootlaces "0.1.11" :scope "test"]])
(require '[adzerk.bootlaces :refer :all])
(def +version+ "0.1.0")
(bootlaces! +version+)
(task-options!
pom {:project 'dthiffault/boot-pages
:version +version+
:description "Boot task to create static pages from a layout with asset hashing support"
:url "https://github.com/DanThiffault/boot-pages"
:scm {:url "https://github.com/DanThiffault/boot-pages"}
:license {"Eclipse Public License" "http://www.eclipse.org/legal/epl-v10.html"}})
(deftask dev
"Dev process"
[]
(comp
(watch)
(repl :server true)
(pom)
(jar)
(install)))