如何正确填写 sonar.java.binaries

我的项目的代码结构有两个特点,

1. 是 maven 管理的多模块结构。相信大部分时候遇到的都是这种多模块结构。

2. 所有代码位于仓库的 bg/ 子目录下。相当于仓库下有两个子目录,bg/ docs/ 其中 bg/ 下面才是代码。(别问为什么)

起初也是设置:sonar.java.binaries=target, 无论如何都不成功。

ERROR: Error during SonarScanner execution
java.lang.IllegalStateException: No files nor directories matching 'target'

 经过多次尝试后,发现应该要这样设置:

sonar.java.binaries=bg/*/target

如何正确填写 sonar.java.binaries

 

上一篇:PostgreSQL用户和权限问题


下一篇:org.sonar.squidbridge.api.AnalysisException: Please provide compiled classes of your project with so