application
eclipse
`check-lib-versions`
- id("org.graalvm.buildtools.native") version "0.9.5"
+ id("org.graalvm.buildtools.native") version "0.9.6"
}
version = "0.9.0"
)
}
}
-
-tasks.withType<JavaExec> {
- val appArgs: String? by project
- if (appArgs != null) {
- // allow passing command-line arguments to the main application e.g.:
- // $ gradle run -PappArgs="['-u', '+...', 'daemon', '--json']"
- args = groovy.util.Eval.me(appArgs) as MutableList<String>
- }
-}