Ich verwende SonarQube zur Kontrolle der Codequalität und plötzlich können Builds, die sonst erfolgreich wären, nicht analysiert werden und schlagen fehl.
[INFO] [00: 00: 03.630] Analysieren von /mySuperProject/target/jacoco.exec -> java.io.IOException: Inkompatible Version 1007
Wenn ich Maven Build mit Debug-Schalter aufrufe, wird diese Ursache aufgedeckt
Caused by: java.io.IOException: Incompatible version 1007.
at org.jacoco.core.data.ExecutionDataReader.readHeader(ExecutionDataReader.java:127)
at org.jacoco.core.data.ExecutionDataReader.readBlock(ExecutionDataReader.java:107)
at org.jacoco.core.data.ExecutionDataReader.read(ExecutionDataReader.java:87)
at org.sonar.plugins.jacoco.AbstractAnalyzer.readExecutionData(AbstractAnalyzer.java:134)
at org.sonar.plugins.jacoco.AbstractAnalyzer.analyse(AbstractAnalyzer.java:107)
Bei der Überprüfung von jacoco ExecutionDataReader habe ich festgestellt, dass eine Ausnahme von ausgelöst wird
if (version != ExecutionDataWriter.FORMAT_VERSION) {
throw new IOException(format("Incompatible version %x.",Integer.valueOf(version)));
}
und von ExecutionDataWriter habe ich herausgefunden
/** File format version, will be incremented for each incompatible change. */
public static final char FORMAT_VERSION = 0x1007;
Was ist diese inkompatible Änderung und warum passiert sie? Irgendwelche Ideen, wie man diese Herausforderung behebt?