문제

I'm using the xsbt 0.6.10 launcher. I would like the ivy files and jar files to be downloaded under a different directory. What is the best way to do this?

도움이 되었습니까?

해결책

With sbt 0.6.12, this can be done by overriding ivyCacheDirectory:

override def ivyCacheDirectory = Some(path("../ivycache")) 

See 0.6.11 announcement and IvyInterface for references.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top