时间:2022-12-20 10:11:32 | 栏目:JAVA代码 | 点击:次
现象说明
maven的java项目,测试用例和main所在的源码文件均符合缺省写法和格式,但是在使用mvn clean sonar:sonar进行编译时提示can't be indexed twice错误。
相关版本
使用如下相关版本信息:
错误信息提示
ERROR: Caused by: File [...] can't be indexed twice. Please check that inclusion/exclusion patterns produce disjoint sets for main and test files
相关信息说明
maven的pom中对于源码和测试代码的指定可以通过如下设定进行:
sonar中对于源码目录和测试代码目录的设定可以通过如下方式进行:
对策
可以通过设定sonar的exclusion/inclusion属性来解决问题。通过-D传入如下信息即可解决(例):
sonar.sources=. sonar.tests=. sonar.test.inclusions=**/*Test*/** sonar.exclusions=**/*Test*/**
参考内容
https://github.com/SonarOpenCommunity/sonar-cxx/wiki/FAQ
总结