We are using SonarScanner(3.7.0.1746) for maven for running analysis on Sonarqube Enterprise Edition 8.8.0.42792
Below are the logs which states the java source & jdkHome with version as 11:
[INFO] 08:58:41.041 Configured Java source version (sonar.java.source): 11
[INFO] 08:58:41.051 JavaClasspath initialization
[DEBUG] 08:58:41.052 Property ‘sonar.java.jdkHome’ set with: /var/jenkins_home/jdk/openjdk11.0.2/
[DEBUG] 08:58:41.057 Property ‘sonar.java.jdkHome’ resolved with:
[/var/jenkins_home/jdk/openjdk11.0.2/lib/jrt-fs.jar]
But still the logs also shows warning as “SonarScanner will require Java 11 to run, starting in SonarQube 9.x”
Can anyone guide what additional properties needs to set in settings.xml to eliminate this warning?
I could not replicate your issue with the same setup (SQ EE 8.8, sonar scanner for maven 3.7.0.1746) and setting the sonar.java.source=11. Can you please provide the entirety of your Maven debug logs? It might be easier to zip it up or you can private message me the file like so: create a new topic and click on the + sign to create a new message:
Note that Apache Maven is using your JDK_HOME environment variable to determine which Java to use since the Sonar Scanner for Maven reads from what Maven provides it. So, this means you can set JDK_HOME right before you call mvn command or set it before you trigger the build.
I suggest doing it inline to keep it as close to mvn command as possible like so: