From c552a0a761b3867fab4edc4860f6b953178bdc94 Mon Sep 17 00:00:00 2001 From: David Nestorovic Date: Tue, 3 Dec 2024 11:19:08 +0100 Subject: [PATCH] Fix runtime arguments explanation --- docs/src/docs/asciidoc/end-to-end-gradle-guide.adoc | 4 ++-- docs/src/docs/asciidoc/end-to-end-maven-guide.adoc | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/src/docs/asciidoc/end-to-end-gradle-guide.adoc b/docs/src/docs/asciidoc/end-to-end-gradle-guide.adoc index 8206fe90..c490c01c 100644 --- a/docs/src/docs/asciidoc/end-to-end-gradle-guide.adoc +++ b/docs/src/docs/asciidoc/end-to-end-gradle-guide.adoc @@ -179,10 +179,10 @@ Inside these blocks you can pass the following options: - `jvmArgs` - Passes the given argument directly to the JVM running the native image builder - `useFatJar` - Instead of passing each jar individually, builds a fat jar -You can also pass **build-time** and **run-time** options to the Native Image using: +You can also pass **build-time** and **run-time** arguments: - `buildArgs.add('')` - You can find more about possible build arguments https://www.graalvm.org/latest/reference-manual/native-image/overview/BuildConfiguration/[here] -- `runtimeArgs.add('')` - You can find more about possible runtime arguments https://www.graalvm.org/latest/reference-manual/native-image/overview/Options/[here] +- `runtimeArgs.add('')` - Runtime arguments consumed by your application Here is an example of additional options usage: diff --git a/docs/src/docs/asciidoc/end-to-end-maven-guide.adoc b/docs/src/docs/asciidoc/end-to-end-maven-guide.adoc index aa1a5ef7..771a054c 100644 --- a/docs/src/docs/asciidoc/end-to-end-maven-guide.adoc +++ b/docs/src/docs/asciidoc/end-to-end-maven-guide.adoc @@ -190,10 +190,10 @@ By default the plugin consults several locations in the pom.xml file in the foll * `` - Passes the given argument directly to the JVM running the native image builder * `` - Use argument file for native-image building (__false__ by default) -You can also pass **build-time** and **run-time** options to the Native Image inside the following blocks: +You can also pass **build-time** options to the Native Image inside the following blocks: -- `` - You can find more about possible build arguments https://www.graalvm.org/latest/reference-manual/native-image/overview/BuildConfiguration/[here] -- `???` - You can find more about possible runtime arguments https://www.graalvm.org/latest/reference-manual/native-image/overview/Options/[here] +- `` - You can find more about possible build arguments https://www.graalvm.org/latest/reference-manual/native-image/overview/Options/[here] +and also https://www.graalvm.org/latest/reference-manual/native-image/overview/BuildConfiguration/[here] To skip generation of the native image or tests execution set the following properties to `true`: