From ebf2be3505d5948a0f1e7765d75ba1338fdcb03d Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sun, 6 Apr 2025 12:52:32 +0200 Subject: [PATCH] Update CI image to Amazon Corretto 17 Alpine version Switch the base image in the GitLab CI from Bullseye to Alpine. This change reduces image size and improves build efficiency. All pipeline stages remain unaffected. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 191e05a..2bb52cf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -40,7 +40,7 @@ sonarcloud_scan: script: - echo "Setting up SonarCloud scan..." - cd ${GITLAB_CLONE_DIR} - - mvn sonar:sonar \ + - mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar \ -Dsonar.host.url=${SONAR_HOST_URL} \ -Dsonar.projectKey=${SONAR_PROJECT_KEY} \ -Dsonar.organization=${SONAR_ORGANIZATION} \