installation détaillée de sonarQube avec PostgreSQL et mesure de qualité d'un projet Partie #2

Опубликовано: 16 Март 2026
на канале: Easy Code With BENDAOUD
1,076
29

installation détaillée de sonarQube avec PostgreSQL et mesure de qualité d'un projet
lien documentation soanrQube:
https://docs.sonarqube.org/latest/req...
--Installation de java jdk 17
https://www.oracle.com/java/technolog...
Ajouter Java\jdk-17\bin dans le path
--Installer postgreSQL 15 avec le pgAdmin4
https://www.enterprisedb.com/download...
--Télécharger sonarQube server
https://www.sonarqube.org/downloads/
--Télécharger sonar-scanner
https://docs.sonarqube.org/latest/ana...

----------------------------------------------------------
Configuration de sonar.properties:
sonar.jdbc.username=userDB
sonar.jdbc.password=PW
sonar.jdbc.url=jdbc:postgresql://localhost:5432/nomDB
------------------------------------------------------
Fichier à mettre dans le dossier racine de projet à analyser: sonar.project.properties:
sonar.projetctKey=projectKey
sonar.projectName=projectName
sonar.source=.
soanar.exclusions=vendor/**,.git/**…..

allez bon courage