admin管理员组

文章数量:1278984

There is support for Graalvm 23 in Spring Boot? I see that in the current release 3.4.3 is supported Graalvm 22.3 (.html)

I want use the option --emit to generate build reports and this was released in Graalvm 23 /

<plugin>
    <groupId>.graalvm.buildtools</groupId>
    <artifactId>native-maven-plugin</artifactId>
    <configuration>
        <debug>true</debug>
        <verbose>true</verbose>
        <buildArgs>
            <buildArg>-Os</buildArg>
            <buildArg>--emit build-report</buildArg>
        </buildArgs>
        
    </configuration>
</plugin>

Someone know how use this option on the current versions of Spring Boot?

本文标签: Support Spring Boot for Graalvm 23Stack Overflow