Tristan Caron
01/16/2019, 9:39 PMpackage com.company
class MyClass {...}
fun main() = ...
I am building a fat jar.
But now I want to run it. Using java -jar my-fat.jar
works, but I'd like to know how I could use it with java -cp my-fat.jar com.company.MainKt
which doesn't work.
How I could I make it?
Thanks