Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 xsbt 0.6.10 启动器。我希望将常春藤文件和 jar 文件下载到不同的目录下。做这个的最好方式是什么?
使用 sbt 0.6.12,这可以通过覆盖来完成ivyCacheDirectory:
ivyCacheDirectory
override def ivyCacheDirectory = Some(path("../ivycache"))
参考0.6.11 公告和IvyInterface。