You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by cl...@apache.org on 2023/08/03 16:08:52 UTC

[camel-k-runtime] branch claudio4j-patch-1 created (now a684e4ed)

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

claudio4j pushed a change to branch claudio4j-patch-1
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git


      at a684e4ed fix automatic CEQ update: don't print mvn download statement

This branch includes the following new commits:

     new a684e4ed fix automatic CEQ update: don't print mvn download statement

The 1 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.



[camel-k-runtime] 01/01: fix automatic CEQ update: don't print mvn download statement

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

claudio4j pushed a commit to branch claudio4j-patch-1
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit a684e4edd3a751ed098ca6fc9190dc699f9bb1b0
Author: Claudio Miranda <cl...@claudius.com.br>
AuthorDate: Thu Aug 3 13:08:46 2023 -0300

    fix automatic CEQ update: don't print mvn download statement
---
 scripts/sync_cq.sh | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/scripts/sync_cq.sh b/scripts/sync_cq.sh
index e1ba64ab..88505fcb 100755
--- a/scripts/sync_cq.sh
+++ b/scripts/sync_cq.sh
@@ -57,18 +57,18 @@ main() {
     exit 0
   fi
 
-  mvn versions:set -DnewVersion="$CQ_VERSION-SNAPSHOT" -DgenerateBackupPoms=false
-  mvn versions:set -DnewVersion="$CQ_VERSION-SNAPSHOT" -f support/camel-k-runtime-bom/pom.xml -DgenerateBackupPoms=false
+  mvn -ntp versions:set -DnewVersion="$CQ_VERSION-SNAPSHOT" -DgenerateBackupPoms=false
+  mvn -ntp versions:set -DnewVersion="$CQ_VERSION-SNAPSHOT" -f support/camel-k-runtime-bom/pom.xml -DgenerateBackupPoms=false
   # We also need to align the following properties
   # camel-version
-  mvn versions:update-parent "-DparentVersion=[$CAMEL_VERSION]" -DgenerateBackupPoms=false
-  mvn versions:set-property -Dproperty="camel-version" -DnewVersion="$CAMEL_VERSION" -DgenerateBackupPoms=false
+  mvn -ntp versions:update-parent "-DparentVersion=[$CAMEL_VERSION]" -DgenerateBackupPoms=false
+  mvn -ntp versions:set-property -Dproperty="camel-version" -DnewVersion="$CAMEL_VERSION" -DgenerateBackupPoms=false
   # camel-quarkus-version
-  mvn versions:set-property -Dproperty="camel-quarkus-version" -DnewVersion="$CQ_VERSION" -DgenerateBackupPoms=false
+  mvn -ntp versions:set-property -Dproperty="camel-quarkus-version" -DnewVersion="$CQ_VERSION" -DgenerateBackupPoms=false
   # quarkus-version
-  mvn versions:set-property -Dproperty="quarkus-version" -DnewVersion="$QUARKUS_VERSION" -DgenerateBackupPoms=false
+  mvn -ntp versions:set-property -Dproperty="quarkus-version" -DnewVersion="$QUARKUS_VERSION" -DgenerateBackupPoms=false
   # quarkus-platform-version
-  mvn versions:set-property -Dproperty="quarkus-platform-version" -DnewVersion="$QUARKUS_VERSION" -DgenerateBackupPoms=false
+  mvn -ntp versions:set-property -Dproperty="quarkus-platform-version" -DnewVersion="$QUARKUS_VERSION" -DgenerateBackupPoms=false
 }
 
 parse_args(){