JaCoCo SonarQube incompatible version 1007

后端 未结 8 1920
轮回少年
轮回少年 2020-12-08 12:50

I\'m using SonarQube for code quality control and suddenly builds that would otherwise pass can\'t be analyzed and fails.

[INFO] [00:00:03.630] Analy

相关标签:
8条回答
  • 2020-12-08 13:24

    What I did was to specify the jacoco version in my maven project.

    <jacoco-maven-plugin.version>0.7.4.201502262128</jacoco-maven-plugin.version>
    
        <plugin>
            <groupId>org.jacoco</groupId>
            <artifactId>jacoco-maven-plugin</artifactId>
            <version>${jacoco-maven-plugin.version}</version>
        </plugin>
    

    That fix my issue!

    0 讨论(0)
  • 2020-12-08 13:31

    Most likely that's caused by latest jacoco-maven-plugin update. Everything was working on 0.7.4.201502262128 but today we switched to 0.7.5.201505241946 which resulted in this error.

    0 讨论(0)
提交回复
热议问题