-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.boot
23 lines (19 loc) · 888 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
(def project 'provisdom/boot-lambda)
(def version "0.1.2-alpha2")
(set-env! :resource-paths #{"src"}
:source-paths #{"test"}
:dependencies '[[org.clojure/clojure "1.8.0" :scope "provided"]
[boot/core "2.6.0" :scope "provided"]
[adzerk/boot-test "1.1.2" :scope "test"]
[adzerk/bootlaces "0.1.13" :scope "test"]])
(require '[adzerk.bootlaces :refer :all]
'[provisdom.boot-lambda :refer :all])
(bootlaces! version)
(task-options!
pom {:project project
:version version
:description "Boot tasks for AWS Lambda"
:url "https://github.com/Provisdom/boot-lambda"
:scm {:url "https://github.com/Provisdom/boot-lambda"}
:license {"Eclipse Public License"
"http://www.eclipse.org/legal/epl-v10.html"}})