You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2020/10/11 09:49:56 UTC

[camel-quarkus-examples] branch master updated (3a2f05b -> 28344e6)

This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git.


    from 3a2f05b  Add index.adoc to make Antora happy
     new ca53ad9  Replacing file resolve with classpath resolver.
     new 28344e6  Upgrade to cq-maven-plugin 0.23.2, use the right directory for example pages

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/ci-build.yaml                         | 2 +-
 mvnw-for-each.sh                                        | 2 +-
 timer-log-xml/src/main/resources/application.properties | 5 ++++-
 3 files changed, 6 insertions(+), 3 deletions(-)


[camel-quarkus-examples] 02/02: Upgrade to cq-maven-plugin 0.23.2, use the right directory for example pages

Posted by pp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git

commit 28344e677565c6825be070c159188e1a504458db
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Sun Oct 11 10:53:32 2020 +0200

    Upgrade to cq-maven-plugin 0.23.2, use the right directory for example pages
---
 .github/workflows/ci-build.yaml | 2 +-
 mvnw-for-each.sh                | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml
index 2f01f93..6a1a859 100644
--- a/.github/workflows/ci-build.yaml
+++ b/.github/workflows/ci-build.yaml
@@ -71,7 +71,7 @@ jobs:
             license:check \
             net.revelc.code.formatter:formatter-maven-plugin:validate \
             net.revelc.code:impsort-maven-plugin:check \
-            org.l2x6.cq:cq-maven-plugin:0.21.0:sync-example-properties
+            org.l2x6.cq:cq-maven-plugin:0.23.2:sync-example-properties
       - name: mvn clean verify -Pnative,docker
         run: |
           ./mvnw-for-each.sh ${MAVEN_ARGS} clean verify -Pnative,docker
diff --git a/mvnw-for-each.sh b/mvnw-for-each.sh
index 3f59104..e7c3519 100755
--- a/mvnw-for-each.sh
+++ b/mvnw-for-each.sh
@@ -15,4 +15,4 @@ do
 done
 
 cd "${pwd}"
-./mvnw org.l2x6.cq:cq-maven-plugin:0.23.1:update-example-pages
+./mvnw org.l2x6.cq:cq-maven-plugin:0.23.2:update-example-pages


[camel-quarkus-examples] 01/02: Replacing file resolve with classpath resolver.

Posted by pp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git

commit ca53ad93141895b9df75630f6313defc5a595efa
Author: chandrashekhar <ch...@localhost>
AuthorDate: Sun Oct 11 09:44:13 2020 +0530

    Replacing file resolve with classpath resolver.
---
 timer-log-xml/src/main/resources/application.properties | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/timer-log-xml/src/main/resources/application.properties b/timer-log-xml/src/main/resources/application.properties
index a711cde..5120e82 100644
--- a/timer-log-xml/src/main/resources/application.properties
+++ b/timer-log-xml/src/main/resources/application.properties
@@ -30,4 +30,7 @@ camel.context.name = quarkus-camel-example-timer-log-xml
 #
 # Camel Main
 #
-camel.main.xml-routes = file:src/main/resources/routes/my-routes.xml
+camel.main.xml-routes = classpath:routes/my-routes.xml
+
+# TODO remove this after Camel Quarkus 1.2.0 https://github.com/apache/camel-quarkus/issues/1901
+quarkus.camel.native.resources.include-patterns = routes/*.xml