chore: include test xml routes in native image
diff --git a/integration-tests/core-main-xml/src/main/resources/application.properties b/integration-tests/core-main-xml/src/main/resources/application.properties
index 80ead8d..1b43161 100644
--- a/integration-tests/core-main-xml/src/main/resources/application.properties
+++ b/integration-tests/core-main-xml/src/main/resources/application.properties
@@ -19,6 +19,9 @@
 #
 quarkus.log.file.enable = false
 
+# include xml routes in native image
+quarkus.native.additional-build-args = -H:IncludeResources=routes/my-routes.xml
+
 #
 # Camel
 #
@@ -27,4 +30,4 @@
 #
 # Main
 #
-camel.main.xml-routes = file:src/test/resources/my-routes.xml
+camel.main.xml-routes = classpath:routes/my-routes.xml
diff --git a/integration-tests/core-main-xml/src/test/resources/my-routes.xml b/integration-tests/core-main-xml/src/main/resources/routes/my-routes.xml
similarity index 100%
rename from integration-tests/core-main-xml/src/test/resources/my-routes.xml
rename to integration-tests/core-main-xml/src/main/resources/routes/my-routes.xml
diff --git a/integration-tests/core-main-xml/src/test/java/org/apache/camel/quarkus/core/CamelTest.java b/integration-tests/core-main-xml/src/test/java/org/apache/camel/quarkus/core/CamelTest.java
index 3d60e95..b6bc1eb 100644
--- a/integration-tests/core-main-xml/src/test/java/org/apache/camel/quarkus/core/CamelTest.java
+++ b/integration-tests/core-main-xml/src/test/java/org/apache/camel/quarkus/core/CamelTest.java
@@ -21,20 +21,13 @@
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import io.restassured.path.json.JsonPath;
-import org.junit.jupiter.api.Tag;
 import org.junit.jupiter.api.Test;
 
 import static org.assertj.core.api.Assertions.assertThat;
 
 @QuarkusTest
 public class CamelTest {
-    /*
-     * This test is tagged with quarkus-platform-ignore as it needs to be
-     * ignored when running camel test from the quarkus-platform as the
-     * test relies on a local route file being loaded.
-     */
     @Test
-    @Tag("quarkus-platform-ignore")
     public void testMainInstanceWithXmlRoutes() {
         JsonPath p = RestAssured.given()
                 .accept(MediaType.APPLICATION_JSON)