Creating a standalone (runnable) Kotlin .jar file with IntelliJ and Gradle
Posted by Simon Larsén in Programming
I've recently started dabbling in some Kotlin, and have found it a very pleasant
experience. One of the first things I wanted to do was to create a standalone
.jar
file, including the Kotlin runtime and any other dependencies. This,
as it turns out, was a bit tricky. In this …