Fork me on GitHub
#leiningen
<
2020-09-01
>
mokr06:09:54

Hi, is there a way to trigger the download of a plugin and its dependencies as a separate step? Just like lein deps does for the project dependencies themselves? I ask in the context of doing compilation inside Docker. To aid Dockers caching strategy I do lein deps before adding sources to my image, but when I get to lein uberjar, I see that it compiles the CLJ part without fetching more dependencies, but then it pulls in dependencies for lein-cljsbuild when it gets to the CLJS compilation. My desire is to fulfil those dependencies right after lein deps so that they don’t have to be fetched in the middle of every compilation phase. Anyone?