-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.boot
29 lines (25 loc) · 1.13 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
25
26
27
28
29
(def project 'avisi/rsync)
(def version "0.2.0-SNAPSHOT")
(set-env! :resource-paths #{"resources" "src"}
:source-paths #{"test"}
:dependencies '[[org.clojure/clojure "1.9.0-alpha13"]
[clj-time "0.12.2"]
[pandect "0.6.0"]
[com.amazonaws/aws-java-sdk-s3 "1.11.50"]
[amazonica "0.3.77" :exclusions [org.clojure/clojure]]
[org.clojure/test.check "0.9.0" :scope "test"]
[org.clojure/tools.logging "0.3.1"]
[adzerk/boot-test "RELEASE" :scope "test"]])
(task-options!
pom {:project project
:version version
:description "A Clojure library designed to sync files from one location to the other"
:url "http://addons.avisi.com"
:scm {:url "https://github.com/avisi/rsync"}
:license {"The UnLicense"
"https://unlicense.org/"}})
(deftask build
"Build and install the project locally."
[]
(comp (pom) (jar) (install)))
(require '[adzerk.boot-test :refer [test]])