-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.boot
More file actions
25 lines (19 loc) · 772 Bytes
/
build.boot
File metadata and controls
25 lines (19 loc) · 772 Bytes
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
(set-env!
:resource-paths #{"src"}
:dependencies '[[org.clojure/clojure "1.8.0" :scope "provided"]
[adzerk/bootlaces "0.1.13" :scope "test"]])
(require
'[adzerk.bootlaces :refer :all])
(def +version+ "1.1.0")
(bootlaces! +version+)
(deftask develop []
(comp (watch) (speak) (build-jar)))
(deftask deploy []
(comp (speak) (build-jar) (push-release)))
(task-options!
pom {:project 'tailrecursion/boot-front
:version +version+
:description "Boot task for invalidating AWS CloudFront resources."
:url "https://github.com/tailrecursion/boot-front"
:scm {:url "https://github.com/tailrecursion/boot-front"}
:license {"EPL" "http://www.eclipse.org/legal/epl-v10.html"} })