From 1f21271a03f7a38b62f699d7b9b63b0ef1daec9f Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Mon, 21 Apr 2025 19:40:19 +0200 Subject: [PATCH] Update project details in GitLab CI configuration Replaced outdated project directory, project key, and organization values with updated ones. This ensures proper integration with SonarQube and maintains accuracy in the pipeline configuration. --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 46af6ba..e5ab432 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,11 +7,11 @@ stages: - sonarcloud_scan variables: - GITLAB_CLONE_DIR: "/builds/ths6435116/CloudflareDNS-java" + GITLAB_CLONE_DIR: "/builds/thischwa/CloudflareDNS-java" # GITLAB_CLONE_DIR: "cloudflaredns-java" SONAR_HOST_URL: $SONAR_HOST_URL - SONAR_PROJECT_KEY: "ths6435116_CloudflareDNS-java" - SONAR_ORGANIZATION: "ths6435116" + SONAR_PROJECT_KEY: "thischwa_CloudflareDNS-java" + SONAR_ORGANIZATION: "thischwa" SONAR_TOKEN: $SONAR_TOKEN SONAR_USER_HOME: "${CI_PROJECT_DIR}/.sonar" # Defines the location of the analysis task cache GIT_DEPTH: "0" # Tells git to fetch all the branches of the project, required by the analysis task