Here\'s an example build.sbt:
build.sbt
import AssemblyKeys._ assemblySettings buildInfoSettings net.virtualvoid.sbt.graph.Plugin.graphSettings name :
If you use sbt-revolver plugin, here is a solution for its "reStart" task:
sbt-revolver
fullClasspath in Revolver.reStart <<= fullClasspath in Compile
UPD: for sbt-1.0 you may use the new assignment form:
fullClasspath in Revolver.reStart := (fullClasspath in Compile).value