-
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) · 779 Bytes
/
build.boot
File metadata and controls
25 lines (19 loc) · 779 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+ "0.1.1")
(bootlaces! +version+)
(deftask develop []
(comp (watch) (speak) (build-jar)))
(deftask deploy []
(comp (speak) (build-jar) (push-release)))
(task-options!
pom {:project 'tailrecursion/boot-stack
:version +version+
:description "Boot tasks for standing up and tearing down aws resources."
:url "https://github.com/tailrecursion/boot-stack"
:scm {:url "https://github.com/tailrecursion/boot-stack"}
:license {"EPL" "http://www.eclipse.org/legal/epl-v10.html"}})