By default, sbt does not consider your dependencies to automatically detect the main class. However, you can force it to use a specific class, either on the command line with
> runMain pack.MainClass
or via sbt setting
mainClass := Some("pack.MainClass")
source
to share