fix: Enclose SonarQube project name in quotes for consistency
Some checks failed
Docker Build and Push / build-and-push (push) Failing after 42s
LabFusion CI/CD Pipeline / service-adapters (push) Failing after 20s
LabFusion CI/CD Pipeline / api-gateway (push) Failing after 1m26s
API Gateway (Java Spring Boot) / test (17) (push) Failing after 2m3s
API Gateway (Java Spring Boot) / test (21) (push) Failing after 2m5s
API Gateway (Java Spring Boot) / security (push) Has been skipped
API Gateway (Java Spring Boot) / build (push) Has been skipped
LabFusion CI/CD Pipeline / api-docs (push) Successful in 1m48s
Integration Tests / integration-tests (push) Failing after 40s
Integration Tests / performance-tests (push) Has been skipped
LabFusion CI/CD Pipeline / frontend (push) Failing after 1m44s
LabFusion CI/CD Pipeline / integration-tests (push) Has been skipped

### Summary of Changes
- Updated the SonarQube project name in CI and API Gateway workflows to be enclosed in quotes for consistency.

### Expected Results
- Improved clarity and consistency in SonarQube project configuration across workflows.
This commit is contained in:
GSRN
2025-09-15 20:41:13 +02:00
parent b42125fb39
commit de9e803d02
2 changed files with 2 additions and 2 deletions

View File

@@ -131,7 +131,7 @@ jobs:
echo "Sending test results to SonarQube..." echo "Sending test results to SonarQube..."
./mvnw clean verify sonar:sonar \ ./mvnw clean verify sonar:sonar \
-Dsonar.projectKey=labfusion-api-gateway \ -Dsonar.projectKey=labfusion-api-gateway \
-Dsonar.projectName=LabFusion API Gateway \ -Dsonar.projectName="LabFusion API Gateway" \
-Dsonar.host.url=${{ secrets.SONAR_HOST_URL }} \ -Dsonar.host.url=${{ secrets.SONAR_HOST_URL }} \
-Dsonar.token=${{ secrets.SONAR_TOKEN }} -Dsonar.token=${{ secrets.SONAR_TOKEN }}

View File

@@ -51,7 +51,7 @@ jobs:
echo "Running tests and sending results to SonarQube..." echo "Running tests and sending results to SonarQube..."
./mvnw clean verify sonar:sonar \ ./mvnw clean verify sonar:sonar \
-Dsonar.projectKey=labfusion-api-gateway \ -Dsonar.projectKey=labfusion-api-gateway \
-Dsonar.projectName=LabFusion API Gateway \ -Dsonar.projectName="LabFusion API Gateway" \
-Dsonar.host.url=${{ secrets.SONAR_HOST_URL }} \ -Dsonar.host.url=${{ secrets.SONAR_HOST_URL }} \
-Dsonar.token=${{ secrets.SONAR_TOKEN }} -Dsonar.token=${{ secrets.SONAR_TOKEN }}