forked from hoplon/castra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.boot
23 lines (19 loc) · 878 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
(merge-env!
:dependencies '[[adzerk/bootlaces "0.1.13" :scope "test"]
[ring/ring "1.4.0" :scope "test"]
[org.clojure/clojure "1.5.1"]
[ring/ring-core "1.4.0"]
[com.cognitect/transit-clj "0.8.285"]
[com.cognitect/transit-cljs "0.8.239"]
[cljsjs/jquery "2.2.4-0"]])
(require
'[adzerk.bootlaces :refer :all])
(def +version+ "3.0.0-alpha8")
(bootlaces! +version+)
(task-options!
pom {:project 'hoplon/castra
:version +version+
:description "HTTP remote procedure call handler for Clojure."
:url "https://github.com/hoplon/castra"
:scm {:url "https://github.com/hoplon/castra"}
:license {"EPL" "http://www.eclipse.org/legal/epl-v10.html"}})