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

martijnvisser pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 916faa8d82665433d5592d5ed20f9b784e1af9e4
Author: Martijn Visser <[email protected]>
AuthorDate: Sun Mar 1 12:45:10 2026 +0100

    [FLINK-39181][ci] Scope shade plugin DEBUG logging to compile step
    
    Move the shade plugin DEBUG log flag from global Maven options to the
    specific compile.sh deploy invocation where it is needed by the
    ShadeParser and NoticeFileChecker. This prevents verbose bytecode
    rewriting messages from flooding test run console output.
---
 tools/ci/compile.sh     | 2 +-
 tools/ci/maven-utils.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/ci/compile.sh b/tools/ci/compile.sh
index 5448713c028..bdc53428fa6 100755
--- a/tools/ci/compile.sh
+++ b/tools/ci/compile.sh
@@ -60,7 +60,7 @@ EXIT_CODE=0
 
 # run with -T1 because our maven output parsers don't support multi-threaded 
builds
 $MVN clean deploy 
-DaltDeploymentRepository=validation_repository::default::file:$MVN_VALIDATION_DIR
 -Dflink.convergence.phase=install -Pcheck-convergence \
-    -Dmaven.javadoc.skip=true -U -DskipTests "${@}" -T1 | tee 
$MVN_CLEAN_COMPILE_OUT
+    -Dmaven.javadoc.skip=true -U -DskipTests 
-Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.shade=DEBUG "${@}" -T1 | 
tee $MVN_CLEAN_COMPILE_OUT
 
 EXIT_CODE=${PIPESTATUS[0]}
 
diff --git a/tools/ci/maven-utils.sh b/tools/ci/maven-utils.sh
index ac0ae9df1af..ab535af4320 100755
--- a/tools/ci/maven-utils.sh
+++ b/tools/ci/maven-utils.sh
@@ -73,7 +73,7 @@ export MVN_GLOBAL_OPTIONS_WITHOUT_MIRROR="$MAVEN_ARGS "
 # see 
https://developercommunity.visualstudio.com/content/problem/851041/microsoft-hosted-agents-run-into-maven-central-tim.html
 MVN_GLOBAL_OPTIONS_WITHOUT_MIRROR+="-Dmaven.wagon.http.pool=false "
 # logging 
-MVN_GLOBAL_OPTIONS_WITHOUT_MIRROR+="-Dorg.slf4j.simpleLogger.showDateTime=true 
-Dorg.slf4j.simpleLogger.dateTimeFormat=HH:mm:ss.SSS 
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
 -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.shade=DEBUG "
+MVN_GLOBAL_OPTIONS_WITHOUT_MIRROR+="-Dorg.slf4j.simpleLogger.showDateTime=true 
-Dorg.slf4j.simpleLogger.dateTimeFormat=HH:mm:ss.SSS 
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
 "
 # suppress snapshot updates
 MVN_GLOBAL_OPTIONS_WITHOUT_MIRROR+="--no-snapshot-updates "
 # enable non-interactive batch mode

Reply via email to