This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git
The following commit(s) were added to refs/heads/master by this push: new f75e2df Replace usage of xml-routes property with routes-include-pattern f75e2df is described below commit f75e2dfeaac559eb356af6e483949a5843e1c3bf Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Thu Feb 25 11:07:07 2021 +0000 Replace usage of xml-routes property with routes-include-pattern --- file-split-log-xml/src/main/resources/application.properties | 5 +++-- timer-log-xml/src/main/resources/application.properties | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/file-split-log-xml/src/main/resources/application.properties b/file-split-log-xml/src/main/resources/application.properties index 75988ad..ab79f43 100644 --- a/file-split-log-xml/src/main/resources/application.properties +++ b/file-split-log-xml/src/main/resources/application.properties @@ -25,7 +25,8 @@ quarkus.log.category."org.apache.camel.main".level = DEBUG # Camel # camel.context.name = camel-quarkus-xml -camel.main.xml-routes = file:src/main/resources/routes/camel-routes.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 \ No newline at end of file +camel.file.split.parallel = false + diff --git a/timer-log-xml/src/main/resources/application.properties b/timer-log-xml/src/main/resources/application.properties index e1e0b49..20a531d 100644 --- a/timer-log-xml/src/main/resources/application.properties +++ b/timer-log-xml/src/main/resources/application.properties @@ -30,4 +30,4 @@ camel.context.name = quarkus-camel-example-timer-log-xml # # Camel Main # -camel.main.xml-routes = classpath:routes/my-routes.xml +camel.main.routes-include-pattern= classpath:routes/my-routes.xml