We are trying to run the Sonar Scans for our JAVA project from our Jenkins job to SonarQube integrations. Below are the details of versions we are using in this job.
Jenkins Version: Jenkins 2.263.3
Java Version: java version “1.8.0_162”
SonarQube Version: Community Edition Version 9.4 (build 54424)
Java in SonarQube Server: openjdk version “11.0.13”
We are getting below errors during the SonarScanner execution. Can someone suggest what could be the cause of this?
ERROR: Error during SonarScanner execution
java.lang.UnsupportedClassVersionError: org/sonar/batch/bootstrapper/EnvironmentInformation has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:763)
Ann,
One more question…
This means, we need to have JAVA 11 or 17 on Jenkins and need to compile our code with these versions and also SonarScanners need these version?
Or, Irrespective of in which Java the code is compiled (Like Build can go using Java 1.8), we just need SonarScanner to use Java 11 and above? Can you please give some inputs on this. Any more information would be greatly appreceiated.
Hi Gilbert,
If we have a Gradle project and we need to explicitly mention the JAVA 11 or JAVA 17 for the Sonar Scan, what would be the snippet to use in JenkinsFile?
Because our code is compiling with JAVA 1.8, but we need to call the Sonar scan with JAVA 11 or 17 to make it compatible…
Example you have given for maven is below:
withMaven(jdk: ‘java-11-openjdk’, maven: “${p.mvnVersion}”, globalMavenSettingsConfig: genericMvnSettings())
when i build the java project jenkins Pipeline it is executeing maven build got sucess but when build sonar i am getting build failure like this [ERROR] Failed to execute goal org.sonarsource.scanner.maven:sonar-maven-plugin:4.0.0.4121:sonar (default-cli) on project 01-maven-web-app: Execution default-cli of goal org.sonarsource.scanner.maven:sonar-maven-plugin:4.0.0.4121:sonar failed: An API incompatibility was encountered while executing org.sonarsource.scanner.maven:sonar-maven-plugin:4.0.0.4121:sonar: java.lang.ExceptionInInitializerError: null
what solution for this.