Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
version: 2025.7.12
tool_versions: |
java 21
java temurin-21
maven 3.9
node 18.17.0
- uses: SonarSource/ci-github-actions/build-maven@v1
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
with:
version: 2025.7.12
tool_versions: |
java ${{ matrix.java_version }}
java temurin-${{ matrix.java_version }}
maven 3.9

- name: Vault
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<dependency>
<groupId>org.sonarsource.scanner.lib</groupId>
<artifactId>sonar-scanner-java-library</artifactId>
<version>4.0.1.1587</version>
<version>4.1.0.1604</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
1 change: 1 addition & 0 deletions src/main/assembly/bin/sonar-scanner
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ project_home=`pwd`

exec "$java_cmd" \
-Djava.awt.headless=true \
-Djdk.http.auth.tunneling.disabledSchemes= \
$SONAR_SCANNER_OPTS \
$SONAR_SCANNER_DEBUG_OPTS \
-classpath "$jar_file" \
Expand Down
2 changes: 1 addition & 1 deletion src/main/assembly/bin/sonar-scanner.bat
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ set PROJECT_HOME=%CD%
@REM remove trailing backslash, see https://groups.google.com/d/msg/sonarqube/wi7u-CyV_tc/3u9UKRmABQAJ
IF %PROJECT_HOME:~-1% == \ SET PROJECT_HOME=%PROJECT_HOME:~0,-1%

%JAVA_EXEC% -Djava.awt.headless=true %SONAR_SCANNER_DEBUG_OPTS% %SONAR_SCANNER_OPTS% -cp "%SONAR_SCANNER_HOME%\lib\sonar-scanner-cli-${project.version}.jar" "-Dscanner.home=%SONAR_SCANNER_HOME%" "-Dproject.home=%PROJECT_HOME%" org.sonarsource.scanner.cli.Main %*
%JAVA_EXEC% -Djava.awt.headless=true "-Djdk.http.auth.tunneling.disabledSchemes=" %SONAR_SCANNER_DEBUG_OPTS% %SONAR_SCANNER_OPTS% -cp "%SONAR_SCANNER_HOME%\lib\sonar-scanner-cli-${project.version}.jar" "-Dscanner.home=%SONAR_SCANNER_HOME%" "-Dproject.home=%PROJECT_HOME%" org.sonarsource.scanner.cli.Main %*
if ERRORLEVEL 1 goto error
goto end

Expand Down
Loading