ValV
09/11/2018, 5:01 PMmaven-jar-plugin
configuration to generate MANIFEST.MF file with Main-Class
entry, it does but with no success - TornadoFX app class is inherited from Application
and has no static main
methodShawn
09/11/2018, 5:01 PMValV
09/11/2018, 5:03 PMhudsonb
09/11/2018, 5:04 PMValV
09/11/2018, 5:05 PMmain
into tornado's App
calling that method?hudsonb
09/11/2018, 5:10 PMApp
, lets say it's called MyApp
. In MyApp.kt you would then have:
fun main(args: Array<String>) {
Application.launch(MyApp::class.java, *args)
}
ValV
09/11/2018, 5:51 PMcompanion object
, thanks