forked from martinklepsch/s3-beam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.boot
20 lines (17 loc) · 855 Bytes
/
build.boot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(set-env!
:resource-paths #{"src/clj" "src/cljs"}
:dependencies '[[adzerk/bootlaces "0.1.13" :scope "test"]
[org.clojure/clojure "1.6.0" :scope "provided"]
[org.clojure/clojurescript "0.0-2371" :scope "provided"]
[org.clojure/data.json "0.2.5"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]])
(require '[adzerk.bootlaces :refer :all])
(def +version+ "0.5.1")
(bootlaces! +version+ :dont-modify-paths? true)
(task-options!
pom {:project 'org.martinklepsch/s3-beam
:version +version+
:description "CORS Upload to S3 via Clojure(script)"
:url "http://github.com/martinklepsch/s3-beam"
:scm {:url "https://github.com/martinklepsch/s3-beam"}
:license {"EPL" "http://www.eclipse.org/legal/epl-v10.html"}})