You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The file build_and_execute_guide.adoc contains instructions about how to include a Gradle plugin required for native compilation. In an effort to provide complete instructions to the user, a code snippet is provided that has a version number included.
Specifically the 0.9.28 version in the text below:
plugins {
id 'org.graalvm.buildtools.native' version '0.9.28'
...
Having the version number in text poses 2 problems I can see:
The patch version (i.e. 0.9.28) is likely to get out of date quickly
The major/minor version may not match the Boot version of the guide (i.e. Boot 3.3.x uses 0.10.x while Boot 3.2.x uses 0.9.x)
The text was updated successfully, but these errors were encountered:
You should check that your Gradle build contains a plugins block that includes org.graalvm.buildtools.native.
Given that the Getting Started Guides are designed to target new learners, I think it would be beneficial to provide the specific version number and text if possible.
When using Maven, the Spring Boot parent will take care of the version. Unfortunately for Gradle we can't manage the version. The current version of native build tools can be found in the documentation.
The file
build_and_execute_guide.adoc
contains instructions about how to include a Gradle plugin required for native compilation. In an effort to provide complete instructions to the user, a code snippet is provided that has a version number included.Specifically the
0.9.28
version in the text below:Having the version number in text poses 2 problems I can see:
The text was updated successfully, but these errors were encountered: