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

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


The following commit(s) were added to refs/heads/main by this push:
     new 884a9fea54c6 chore(ci): exclude tooling coverage
884a9fea54c6 is described below

commit 884a9fea54c68927a540aae8f9ee5a280f88419f
Author: Pasquale Congiusti <[email protected]>
AuthorDate: Mon Mar 9 09:49:24 2026 +0100

    chore(ci): exclude tooling coverage
---
 Jenkinsfile     | 2 +-
 tooling/pom.xml | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index f647482f5bf8..ae3de2f3d99d 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -148,7 +148,7 @@ pipeline {
                                 if ("${PLATFORM}" == "ubuntu-avx" && 
"${JDK_NAME}" == "jdk_21_latest") {
                                     withCredentials([string(credentialsId: 
'apache-camel-core', variable: 'SONAR_TOKEN')]) {
                                         echo "Code quality review ENABLED for 
${PLATFORM} with ${JDK_NAME}"
-                                        sh "./mvnw $MAVEN_PARAMS 
-Dsonar.host.url=https://sonarcloud.io 
-Dsonar.java.experimental.batchModeSizeInKB=2048 -Dsonar.organization=apache 
-Dsonar.projectKey=apache_camel -Dsonar.branch.name=$BRANCH_NAME 
org.sonarsource.scanner.maven:sonar-maven-plugin:sonar 
-Dsonar.coverage.exclusions=test-infra/**"
+                                        sh "./mvnw $MAVEN_PARAMS 
-Dsonar.host.url=https://sonarcloud.io 
-Dsonar.java.experimental.batchModeSizeInKB=2048 -Dsonar.organization=apache 
-Dsonar.projectKey=apache_camel -Dsonar.branch.name=$BRANCH_NAME 
org.sonarsource.scanner.maven:sonar-maven-plugin:sonar 
-Dsonar.coverage.exclusions=test-infra/**,tooling/**"
                                     }
                                 } else {
                                     echo "Code quality review DISABLED for 
${PLATFORM} with ${JDK_NAME}"
diff --git a/tooling/pom.xml b/tooling/pom.xml
index fd581afdfb8b..bafd642f28e4 100644
--- a/tooling/pom.xml
+++ b/tooling/pom.xml
@@ -36,6 +36,8 @@
     <properties>
         <!-- Vulnerability scan only enabled in runtime modules -->
         <dependency-check.skip>true</dependency-check.skip>
+        <!-- don't need coverage for tooling -->
+        <jacoco.skip>true</jacoco.skip>
     </properties>
 
     <modules>

Reply via email to