-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.boot
28 lines (23 loc) · 894 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
(def project 'why)
(def version "0.1.1")
(set-env! :resource-paths #{"resources" "src"}
:source-paths #{"test"}
:dependencies '[[crisptrutski/boot-cljs-test "0.3.2-SNAPSHOT" :scope "test"]
[adzerk/boot-test "RELEASE" :scope "test"]])
(task-options!
pom {:project project
:version version
:description "Traceable business logic with decision trees"
:url "https://blog.txus.io/why"
:scm {:url "https://github.com/txus/why"}
:license {"The MIT License (MIT)"
"http://opensource.org/licenses/mit-license.php"}})
(deftask build
"Build and install the project locally."
[]
(comp (pom) (jar) (install)))
(deftask release
[]
(comp (pom) (jar) (push)))
(require '[adzerk.boot-test :refer [test]])
(require '[crisptrutski.boot-cljs-test :refer [test-cljs]])