Scala日記

Scalaの備忘録。ときどき研究の話。

sbtで使われているclasspathを取り出す

以下のワンライナーでOK

sbt "export compile:dependency-classpath" | tail -1 | scala -e 'import scala.io.StdIn;StdIn.readLine().split(":") foreach println'