Reputation: 405
I have the following problem, when executing Jenkins Job, I get the following error:
INFO: Java Version: 7 SonnarQube : 6.7.3-alpine SonarQube Scanner for MSBuild 4.3.0.1333 Jenkins Version: 2.107.3
Help me pls...
Upvotes: 0
Views: 1199
Reputation: 3563
You are trying to run an application with a JVM with a lower version number than the class was compiled with. Class version 52.0 equates to Java 1.8, and you are probably using 1.7, 1.6 or even lower. There will be no problem running it with a 1.8 or higher VM.
You can check your VM version by executing java -version
.
Upvotes: 1