-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeps.edn
12 lines (12 loc) · 813 Bytes
/
deps.edn
1
2
3
4
5
6
7
8
9
10
11
12
{:paths ["src"]
;; Mark reagent as <optional>true</optional> in the pom. Would be more correct
;; [1] to mark it as <scope>provided</scope> since reagent is always needed to
;; use this lib. But, tools.build doesn't support scope [2].
;; [1] https://medium.com/@danismaz.furkan/difference-between-optional-true-optional-and-scope-provided-scope-7404ec24fb59
;; [2] https://ask.clojure.org/index.php/9110/scope-in-deps-edn-should-be-added-and-not-deleted-from-pom-xml
:deps {reagent/reagent {:mvn/version "1.1.1"
:optional true}}
:aliases {;; for help: clojure -A:deps -T:build help/doc
:build {:paths ["dev"]
:deps {io.github.seancorfield/build-clj {:git/tag "v0.8.0" :git/sha "9bd8b8a"}}
:ns-default build}}}