I've created an SBT 0.11 project of an only one source code file (yet):
object HelloWorld extends App {
println("Hello, world!")
}
When try to run the application with SBT, I get "java.lang.RuntimeException: No main class detected".
How do I define the main class?
I have used "full configuration" with the folowing Build.scala:
import sbt._
object MyBuild extends Build {
lazy val HelloWorld = Project("HelloWorld ", file("src"))
}
And the following build.sbt:
name := "HelloWorld"
version := "1.0"
scalaVersion := "2.9.1"
Applicationinstead? Or defining your ownmainmethod? I'm not telling you to do this on prod but just to check if your class is being picked by sbt – Pablo Fernandez Oct 18 '11 at 23:03file("src")part – Pablo Fernandez Oct 18 '11 at 23:16\HelloWorld\src\main\scala\HelloWorld.scala, the config is\HelloWorld\project\Build.scala– Ivan Oct 19 '11 at 0:30