Reputation: 113
I am trying to use prediction.IO in a machine that can't be connected to the internet. When I try to build, it wants to download the dependencies of SBT. I want to know how this can be done manually, and if there is a place from where I can down download all the dependencies, and run SBT.
I would really appreciate any help. I am dying out here. Thanks a lot!
Upvotes: 1
Views: 1090
Reputation: 14649
sbt test:compile
task$HOME/.sbt
$HOME/.ivy2
directories (%USERPROFILE%\.sbt
%USERPROFILE%\.ivy2
for windows 7/8/10)sbt "set offline := true" <task>
or add to your sbt file offline := true
Upvotes: 2