-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.boot
More file actions
20 lines (17 loc) · 744 Bytes
/
build.boot
File metadata and controls
20 lines (17 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(set-env!
:source-paths #{"src"}
:dependencies '[[adzerk/bootlaces "0.1.13" :scope "test"]
[org.clojure/core.async "0.2.395"]
[shyblower/helpers "3.1.0"]]
:exclusions '[org.clojure/clojure])
(require '[adzerk.bootlaces :refer :all])
(def +version+ "3.4.0")
(bootlaces! +version+)
(task-options!
pom {:project 'shyblower/clonut
:version +version+
:description "A core.async based, action triggered state loop for ClojureScript"
:url "https://github.com/shyblower/clonut"
:scm {:url "https://github.com/shyblower/clonut.git"}
:license {"EPL" "https://github.com/shyblower/clonut/blob/master/LICENSE"}}
target {:dir ["target"]})