Jenkins中配置Sonar扫描代码遇到的问题和解决办法

  1. Cannot use the diamond generic notation when running in JDK
    inferior to 1.7 mode! 根据使用的JDK版本,修改配置: sonar.java.source=1.8

  2. java.lang.IllegalStateException: No files nor directories matching ‘target/’
    sonar.java.binaries=.

  3. Project does not pass the quality gate
    一般出现在调试模式,将Jenkins中的Additional arguments配置中的:-X去掉。

你可能感兴趣的:(工具使用,jenkins,运维)