Konrad Stanik
08/31/2023, 12:35 PMSpoudel347
08/31/2023, 12:39 PM.app or .dmg in mac?Konrad Stanik
08/31/2023, 12:41 PM.kexe which can be easily exported by binaries.executable() available for NativeCLOVIS
08/31/2023, 1:20 PMapplication plugin can generate it easily: https://gitlab.com/opensavvy/notes/kotlin-fullstack/-/blob/main/app-cli/build.gradle.kts?ref_type=heads
Note the:
• application in the plugins block
• the jvm { withJava() } block (mandatory, but not documented anywhere!)
• the application block with the main class
The plugin generates either a .zip or .tar.gz which contains a script that starts the application. It's not a single executable JAR, but in my case that was what I was searching for.Konrad Stanik
08/31/2023, 1:24 PMSpoudel347
08/31/2023, 1:24 PM.exe,.appKonrad Stanik
08/31/2023, 1:26 PMSpoudel347
08/31/2023, 1:27 PMsolonovamax
09/01/2023, 6:02 PM