This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git
commit 367fe34f00cb61ef46b82daeaffa37857d7fcc7d Author: James Netherton <[email protected]> AuthorDate: Tue Oct 21 13:13:07 2025 +0100 Use Camel default route source location in file-split-log-xml example --- file-split-log-xml/src/main/resources/application.properties | 1 - file-split-log-xml/src/main/resources/{routes => camel}/camel-routes.xml | 0 2 files changed, 1 deletion(-) diff --git a/file-split-log-xml/src/main/resources/application.properties b/file-split-log-xml/src/main/resources/application.properties index b1d326a7..88f68193 100644 --- a/file-split-log-xml/src/main/resources/application.properties +++ b/file-split-log-xml/src/main/resources/application.properties @@ -24,7 +24,6 @@ quarkus.log.file.enabled = true # Camel # camel.context.name = camel-quarkus-xml -camel.main.routes-include-pattern = file:src/main/resources/routes/camel-routes.xml camel.file.route.folder = src/main/resources/file camel.file.repeat.interval = 30000 camel.file.split.parallel = false diff --git a/file-split-log-xml/src/main/resources/routes/camel-routes.xml b/file-split-log-xml/src/main/resources/camel/camel-routes.xml similarity index 100% rename from file-split-log-xml/src/main/resources/routes/camel-routes.xml rename to file-split-log-xml/src/main/resources/camel/camel-routes.xml
