forked from boot-clj/boot-cljs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.boot
More file actions
19 lines (15 loc) · 756 Bytes
/
build.boot
File metadata and controls
19 lines (15 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(set-env!
:dependencies '[[org.clojure/clojure "1.6.0" :scope "provided"]
[boot/core "2.0.0-rc9" :scope "provided"]
[adzerk/bootlaces "0.1.9" :scope "test"]
[org.clojure/clojurescript "0.0-2814" :scope "test"]])
(require '[adzerk.bootlaces :refer :all])
(def +version+ "0.0-2814-2")
(bootlaces! +version+)
(task-options!
pom {:project 'adzerk/boot-cljs
:version +version+
:description "Boot task to compile ClojureScript applications."
:url "https://github.com/adzerk/boot-cljs"
:scm {:url "https://github.com/adzerk/boot-cljs"}
:license {"EPL" "http://www.eclipse.org/legal/epl-v10.html"}})