Fork me on GitHub
#tools-deps
<
2019-09-06
>
Travis15:09:32

I may have over looked this in the docs but is there something kind of the equivalent of

lein deps
. Basically trying to make sure all maven deps are downloaded for caching

seancorfield15:09:45

@camechis use clojure -Spath or clojure -Stree (and just ignore the output).

jjttjj16:09:24

@quest this might not fit your use case but if you're just looking to use code from one of your local projects it's dead easy to just refer to local source directories with clj:

:deps  {
        ...    
         {:local/root "/home/jjttjjj/code/goodlib"}
        ...
        }

👍 4
Alex Miller (Clojure team)16:09:56

you should use :paths for that

Quest17:09:09

@jjttjj Unfortunately my other projects aren't deps.edn yet -- adapting the re-frame 10x (shadow-cljs) template isn't something I'm ready for yet. Will keep that in mind though