I have my elevator project. I have a file called LiftConsole.scala. It was created when creating the script project and contains the following
import _root_.bootstrap.liftweb.Boot
import _root_.scala.tools.nsc.MainGenericRunner
object LiftConsole {
def main(args : Array[String]) {
val b = new Boot()
b.boot
MainGenericRunner.main(args)
exit(0)
}
}
It seems that the purpose of this file is to allow the user to interact with the console within the project. I would like to, but I could never do this because I cannot find a jar for MainGenericRunner. Does anyone know where to get it?
My goal is to be able to initialize the console, all the parameters of the project, so that I can execute the project code.
source
share