Skip to content

Commit cdfd60a

Browse files
bhbdanielcompton
authored andcommitted
Use 'provided' scope
"[provided] indicates you expect the JDK or a container to provide the dependency at runtime" - https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html In other words, this dependency won't be included when you include this library, since it assumed any project that includes this lib will already include Clojure, Clojurescript, and re-frame
1 parent f28ec29 commit cdfd60a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

project.clj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
:description "A re-frame effects handler for coordinating the kind of async control flow which often happens on app startup."
33
:url "https://github.com/Day8/re-frame-async-flow-fx.git"
44
:license {:name "MIT"}
5-
:dependencies [[org.clojure/clojure "1.8.0"]
6-
[org.clojure/clojurescript "1.9.89"]
7-
[re-frame "0.8.0"]
5+
:dependencies [[org.clojure/clojure "1.8.0" :scope "provided"]
6+
[org.clojure/clojurescript "1.9.89" :scope "provided"]
7+
[re-frame "0.8.0" :scope "provided"]
88
[day8.re-frame/forward-events-fx "0.0.5"]]
99

1010
:profiles {:debug {:debug true}

0 commit comments

Comments
 (0)