scala_school2
scala_school2 copied to clipboard
Allow additions to interpreter classpath
There isn't really any way yet to demo anything from, let's say, twitter-util or finagle. Need to be able to pull external libraries into the interpreter's classpath to allow this.
console.classpath.value = classPathList.mkString(":")
@jnievelt yeah, right now I'm doing settings.usejavacp.value = true
. So actually, any dependency you add to the build.sbt
file with compile
or runtime
scope will actually be present in our classpath. That might be good enough...