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/12/08 15:34:10 UTC

(camel-k) branch main updated: Set quiet mode to maven overlay build script (#4980)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 751d9d741 Set quiet mode to maven overlay build script (#4980)
751d9d741 is described below

commit 751d9d7414c79bf7904e2d76554f6c1a3b7269cc
Author: Claudio Miranda <cl...@claudius.com.br>
AuthorDate: Fri Dec 8 12:34:04 2023 -0300

    Set quiet mode to maven overlay build script (#4980)
---
 script/maven_overlay.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/script/maven_overlay.sh b/script/maven_overlay.sh
index 2c69701b0..3c02bcbac 100755
--- a/script/maven_overlay.sh
+++ b/script/maven_overlay.sh
@@ -30,6 +30,6 @@ fi
 
 output_dir=$1
 
-mvn $options -f java/maven-logging/pom.xml clean package
+mvn -q $options -f java/maven-logging/pom.xml clean package
 cp java/maven-logging/target/maven-overlay/*.jar ${output_dir}
 cp java/maven-logging/src/main/resources/logback.xml ${output_dir}