-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.boot
24 lines (20 loc) · 1.08 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
(set-env!
:source-paths #{"src"}
:dependencies '[[org.clojure/clojure "1.7.0-alpha5" :scope "provided"]
[org.clojure/clojurescript "0.0-2760" :scope "compile"]
[cljsjs/react "0.12.2-5" :scope "compile"]
[ring/ring-jetty-adapter "1.3.2" :scope "compile"]
[rm-hull/ring-gzip-middleware "0.1.7" :scope "compile"]
[hiccup "1.0.5" :scope "compile"]
[garden "1.2.5" :scope "compile"]
[adzerk/bootlaces "0.1.10" :scope "test"]])
(require '[adzerk.bootlaces :refer :all])
(def +version+ "0.2.3")
(bootlaces! +version+)
(task-options!
pom {:project 'pandeiro/agua
:version +version+
:description "Helpers for just-add-water webapps"
:url "https://github.com/pandeiro/agua"
:scm {:url "https://github.com/pandeiro/agua"}
:license {"Eclipse Public License" "http://www.eclipse.org/legal/epl-v10.html"}})