This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git
The following commit(s) were added to refs/heads/main by this push:
new b43dd92df3 change mvn command, #6254 (#6256)
b43dd92df3 is described below
commit b43dd92df39abb78dec811128fece6c135eb6d81
Author: Hans Van Akelyen <[email protected]>
AuthorDate: Wed Dec 24 13:15:34 2025 +0100
change mvn command, #6254 (#6256)
* Update sonar plugin version, fixes #6254
* update mvn target to fix sonar, fixes #6254
---
Jenkinsfile.daily | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Jenkinsfile.daily b/Jenkinsfile.daily
index a64497c1b1..4c53e9c81a 100644
--- a/Jenkinsfile.daily
+++ b/Jenkinsfile.daily
@@ -92,7 +92,7 @@ pipeline {
steps {
echo 'Checking Code Quality on SonarCloud'
withCredentials([string(credentialsId:
'sonarcloud-key-apache-hop', variable: 'SONAR_TOKEN')]) {
- sh 'mvn sonar:sonar -Dsonar.host.url=https://sonarcloud.io
-Dsonar.organization=apache -Dsonar.projectKey=apache_hop
-Dsonar.branch.name=${BRANCH_NAME} -Dsonar.token=${SONAR_TOKEN}'
+ sh 'mvn
org.sonarsource.scanner.maven:sonar-maven-plugin:sonar
-Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=apache
-Dsonar.projectKey=apache_hop -Dsonar.branch.name=${BRANCH_NAME}
-Dsonar.token=${SONAR_TOKEN}'
}
}
}