how to set main class in SBT 0.13 project
Try to use an object and extend it from App instead of using class
object Main extends App {
println("Hello from main scala object")
}
You need to put your application's source in src/main/scala/
, project/
is for build definition code.