Use application.properties rather than pom.xml for addAllCharsets
diff --git a/integration-tests/platform-http/pom.xml b/integration-tests/platform-http/pom.xml
index a966ba5..ae09986 100644
--- a/integration-tests/platform-http/pom.xml
+++ b/integration-tests/platform-http/pom.xml
@@ -128,7 +128,6 @@
                                     <enableJni>true</enableJni>
                                     <enableAllSecurityServices>true</enableAllSecurityServices>
                                     <disableReports>true</disableReports>
-                                    <addAllCharsets>true</addAllCharsets><!-- Required by the encoding() test -->
                                 </configuration>
                             </execution>
                         </executions>
diff --git a/integration-tests/platform-http/src/main/resources/application.properties b/integration-tests/platform-http/src/main/resources/application.properties
index 33ed67b..f6591cf 100644
--- a/integration-tests/platform-http/src/main/resources/application.properties
+++ b/integration-tests/platform-http/src/main/resources/application.properties
@@ -22,3 +22,6 @@
 quarkus.log.file.enable = false
 quarkus.log.category."org.apache.camel.quarkus.core.deployment".level = INFO
 quarkus.log.category."org.apache.camel.quarkus.component.platform.http".level = INFO
+
+# Required by the encoding() test
+quarkus.native.add-all-charsets = true