I was a heavy Maven user and now I\'m gradually using SBT for some of my projects.
I\'d like to know how could I use SBT to create a standalone Java project? This pr
'sbt package' will produce a jar file.
If you want it to be executable you need to add the following to your .sbt config:
mainClass in Compile := Some("your.main.Class")