is is possible to execute such command in sbt to download all jar dependencies (needed for assembly
task without build actual target jar? I would like to fullfill local cache (I mean ~/.sbt
, ~/.m2
and so on directories). Is there exist such command or way to do it?
1
votes
1 Answers
2
votes
The sbt update
task does this. This is listed in the sbt Command Line Reference, under Project-level Tasks.
sbt update
. – Levi Ramsey