sonar-maven-plugin 失败,超过 GC 开销限制
sonar-maven-plugin fails with GC overhead limit exceeded
我们使用 sonar-maven-plugin 扫描项目,并在各自的 Jenkins 阶段解决这个错误
...
14:46:19 [INFO] Sensor JaCoCoSensor
14:46:19 [WARNING] You are not using the latest JaCoCo binary format version, please consider upgrading to latest JaCoCo version.
14:46:19 [INFO] Analysing D:\jenkins\workspace\example-master-TD7G6HW7YEVZGI5SB6KAKUAC2HNRPENMLFLUMZSUIJN4VX6DGSKQ\..\target\jacoco.exec
14:47:06 Exception in thread "xxxx" java.lang.OutOfMemoryError: GC overhead limit exceeded
14:47:06 at java.util.ArrayList.iterator(ArrayList.java:840)
14:47:06 at com.persistit.TimelyResource.prune(TimelyResource.java:303)
14:47:06 at com.persistit.Persistit.pruneTimelyResources(Persistit.java:2499)
14:47:06 at com.persistit.Persistit.cleanup(Persistit.java:1531)
14:47:06 at com.persistit.CleanupManager.poll(CleanupManager.java:157)
14:47:06 at com.persistit.CleanupManager.runTask(CleanupManager.java:88)
14:47:06 at com.persistit.IOTaskRunnable.run(IOTaskRunnable.java:144)
14:47:06 at java.lang.Thread.run(Thread.java:748)
...
将 sonar.jacoco.reportPath 属性 添加到 pom.xml(第 6 行)时问题已解决:
<properties>
<java.version>1.8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<!-- this is defined in spring-core-env and fits for multi module project. Scanner fails for single module projects! -->
<sonar.jacoco.reportPath>${project.basedir}/target/jacoco.exec</sonar.jacoco.reportPath>
</properties>
这可以通过阅读 https://wiki.jenkins.io/display/JENKINS/JaCoCo+Plugin
的评论找到
我们使用 sonar-maven-plugin 扫描项目,并在各自的 Jenkins 阶段解决这个错误
...
14:46:19 [INFO] Sensor JaCoCoSensor
14:46:19 [WARNING] You are not using the latest JaCoCo binary format version, please consider upgrading to latest JaCoCo version.
14:46:19 [INFO] Analysing D:\jenkins\workspace\example-master-TD7G6HW7YEVZGI5SB6KAKUAC2HNRPENMLFLUMZSUIJN4VX6DGSKQ\..\target\jacoco.exec
14:47:06 Exception in thread "xxxx" java.lang.OutOfMemoryError: GC overhead limit exceeded
14:47:06 at java.util.ArrayList.iterator(ArrayList.java:840)
14:47:06 at com.persistit.TimelyResource.prune(TimelyResource.java:303)
14:47:06 at com.persistit.Persistit.pruneTimelyResources(Persistit.java:2499)
14:47:06 at com.persistit.Persistit.cleanup(Persistit.java:1531)
14:47:06 at com.persistit.CleanupManager.poll(CleanupManager.java:157)
14:47:06 at com.persistit.CleanupManager.runTask(CleanupManager.java:88)
14:47:06 at com.persistit.IOTaskRunnable.run(IOTaskRunnable.java:144)
14:47:06 at java.lang.Thread.run(Thread.java:748)
...
将 sonar.jacoco.reportPath 属性 添加到 pom.xml(第 6 行)时问题已解决:
<properties>
<java.version>1.8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<!-- this is defined in spring-core-env and fits for multi module project. Scanner fails for single module projects! -->
<sonar.jacoco.reportPath>${project.basedir}/target/jacoco.exec</sonar.jacoco.reportPath>
</properties>
这可以通过阅读 https://wiki.jenkins.io/display/JENKINS/JaCoCo+Plugin
的评论找到