diff --git a/core/deployment/src/main/java/io/quarkus/deployment/pkg/NativeConfig.java b/core/deployment/src/main/java/io/quarkus/deployment/pkg/NativeConfig.java index 5f25613e770c1..c4e4c476fbb43 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/pkg/NativeConfig.java +++ b/core/deployment/src/main/java/io/quarkus/deployment/pkg/NativeConfig.java @@ -122,7 +122,12 @@ public interface NativeConfig { String fileEncoding(); /** - * If all character sets should be added to the native image. This increases image size + * If all character sets should be added to the native executable. + *

+ * Note that some extensions (e.g. the Oracle JDBC driver) also take this setting into account to enable support for all + * charsets at the extension level. + *

+ * This increases image size. */ @WithDefault("false") boolean addAllCharsets();