-
Notifications
You must be signed in to change notification settings - Fork 1
/
deps.edn
15 lines (12 loc) · 838 Bytes
/
deps.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{:deps {org.clojure/clojure {:mvn/version "1.10.3"}
io.github.FieryCod/holy-lambda {:mvn/version "0.2.1"}}
;; Local repositories should be downloaded to `.holy-lambda` directory
;; This way project artifacts are separated from global ~/.m2 and only project artifacts
;; are deployed to AWS Lambda
:mvn/local-repo ".holy-lambda/.m2"
:paths ["src" "resources"]
:aliases {
;; Required if bb tasks don't use docker
:uberjar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.216"}}
:exec-fn hf.depstar/uberjar
:exec-args {}}}}