-
Notifications
You must be signed in to change notification settings - Fork 18
/
build.boot
28 lines (21 loc) · 1.01 KB
/
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
(set-env!
:dependencies '[[org.clojure/clojure "1.8.0" :scope "provided"]
[boot/core "2.7.1" :scope "provided"]
[adzerk/bootlaces "0.1.13" :scope "test"]
[adzerk/boot-cljs "2.1.2" :scope "test"]
[doo "0.1.7" :scope "test"]
[adzerk/boot-test "1.2.0" :scope "test"]])
(require '[adzerk.bootlaces :refer :all]
'[adzerk.boot-test :refer :all])
(def +version+ "0.3.5-SNAPSHOT")
(bootlaces! +version+)
(task-options!
pom {:project 'crisptrutski/boot-cljs-test
:version +version+
:description "Boot task to run ClojureScript tests."
:url "https://github.com/crisptrutski/boot-cljs-test"
:scm {:url "https://github.com/crisptrutski/boot-cljs-test"}
:license {"EPL" "http://www.eclipse.org/legal/epl-v10.html"}})
(deftask deps[])
(deftask testing []
(merge-env! :source-paths #{"test"}))