Configure sbt to not utilize user home directory

前端 未结 3 564
既然无缘
既然无缘 2021-01-01 04:16

Last week we had the user directory permissions changed on our CI servers and we no longer have write access to the user home directory. Hence sbt fails to boot because it

3条回答
  •  死守一世寂寞
    2021-01-01 04:41

    If you would like to run with your .ivy in a different location, and you're using sbt extras boot script, then you should just be able to do:

    sbt -ivy /path/to/ivy package
    

    and it'll download all the ivy stuffs to the location specified and run whatever command you need (in this example, package)

提交回复
热议问题