Christian Wirth
Christian Wirth
System properties propagated to java from native-gradle-plugin system properties configuration are wrapped in quotes ``` graalvmNative { binaries { main { systemProperties = [propertyName: 'value'] ``` System.getProperty("propertyName") in java then...
added native-maven-plugin system properties configuration to pom as described in https://graalvm.github.io/native-build-tools/latest/maven-plugin.html ``` org.graalvm.buildtools native-maven-plugin ... false value ... ``` but the expected system property -DpropertyName=value was not added to the...