From 5f2f71e539a6bda21274f96a0a37219365cac906 Mon Sep 17 00:00:00 2001 From: soufiane Date: Tue, 25 Nov 2025 15:49:24 +0100 Subject: [PATCH] fix: use sonar-project.properties for SonarQube config --- Jenkinsfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b7edae6..6f46529 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -104,11 +104,7 @@ pipeline { echo "🔍 Analyse SonarQube..." withSonarQubeEnv('SonarQube') { sh """ - sonar-scanner \ - -Dsonar.projectKey=Th-Tip-Top-Frontend \ - -Dsonar.projectName='Thé Tip Top Frontend' \ - -Dsonar.sources=. \ - -Dsonar.exclusions=node_modules/**,.next/**,coverage/**,out/** + sonar-scanner """ } }