I'm using sbt 0.10 with Scala 2.9.1.
However I don't want a one huge jar. I just want dependency jars ending up in target/scala-2.9.1.final/lib directory.
The reason why I don't want a one huge jar, that project uses a lot of libs, and usually only the application .jar changes. However as this is multi-language project and not all team members have scala or sbt, jars are just commited to git. Having one huge dar updated regullary would inflate repo size.
How can I copy those dependencies? ;)