With Spring Boot 3.0 RC1 spring team decided to moved all of the graalvm native-maven-plugin configuration to spring-boot-parent...and we simply inherit the native profile. I like this move but we have lost the possibility of passing the native image build arguments... buildArgs.
Is there any possibility to pass native image build arguments to native-maven-plugin with Spring Boot 3.0 RC1 except of complete overriding of "native-maven-plugin" definition in the child pom.xml?
I mean buildArgs:
<configuration>
<imageName>${binary-name}</imageName>
<skip>${skip-native-build}</skip>
<buildArgs>
<buildArg>-H:+ReportExceptionStackTraces ${native-image-extra-flags}. </buildArg>
</buildArgs>
</configuration>
thanks.