how to I provide argument lines to the run target?...
# compose-desktop
y
how to I provide argument lines to the run target? I would like to enable assertions (
-ea
).
s
jvmArgs ?
Copy code
compose.desktop {
    application {
        jvmArgs(...)
     }
}
a
application { jvmArgs(...) }
for JVM arguments,
application { args(...) }
for application’s arguments (i.e.
args
in
main(args: Array<String>)
)
s
@alexey.tsvetkov thanks.
-ea
is vm argument.