How to build a stand-alone scala executable

build, executable, scala

Solution

Have a look one OneJar. There is also a sbt plugin here

Problem

I am trying to create a standalone .exe file (or something equivalent) from a scala project I have started. I need to create this in such a way thet the person using the application has to do the least amount of work possible (double-click an installer or just the .exe file). What are my options?

Original source

Related problems