From c575a2df14a534d586c002795447e6b644f35556 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Galder=20Zamarre=C3=B1o?= Date: Fri, 9 Feb 2024 17:01:58 +0100 Subject: [PATCH] Update docs/src/main/asciidoc/writing-native-applications-tips.adoc Co-authored-by: Foivos --- docs/src/main/asciidoc/writing-native-applications-tips.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/writing-native-applications-tips.adoc b/docs/src/main/asciidoc/writing-native-applications-tips.adoc index 08c198bedaeff..df6066231f32a 100644 --- a/docs/src/main/asciidoc/writing-native-applications-tips.adoc +++ b/docs/src/main/asciidoc/writing-native-applications-tips.adoc @@ -62,7 +62,7 @@ will include: If globs are not sufficiently precise for your use case and you need to rely on regular expressions, or if you prefer relying on the GraalVM infrastructure, you can also create a `resource-config.json` JSON file defining which resources should be included. Ideally this, and other native image configuration files, should be placed under the `src/main/resources/META-INF/native-image//` folder. -By placing them there, there is no additional configuration parameters that need to be passed into the native build. +This way they will be automatically parsed by the native build, without additional configuration. [WARNING] ====