Is it possible to create a Scala JAR file with all the required scala runtime classes included in it such that it would be possible to run on a default installation of the JVM?
So it should be executable by typing:
java -jar scala-app.jar
If this can be done using the Scala Build Tool that would be ideal but if it requires manually adding dependencies to the JAR file and editing the manifest file I can live with that.