scala - How to run defined sbt.Command from build.sbt file? -
i using 1 of sbt plugins has object of sbt.command defined:
val xcommand: command = command(xcommandkey)(_ => xparser) { (st, args) => ... }
i need run build.sbt file , have no idea how that. know how?
sbt-files shorthand defining configuration. mix in general scala code need add ie. build.scala project directory.
see http://www.scala-sbt.org/0.13/tutorial/full-def.html#relating+build.sbt+to+build.scala understand how these files cooperate.
Comments
Post a Comment