作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
当我对我的 android 项目运行 Sonar 分析时,我总是收到很多关于 Android 资源编译生成的 .class 文件的消息,如下所示
Run sonar: The class 'foo.bar.R$string' could not be matched to its original source file. It might be a dynamically generated class.
我猜这些消息来自 Findbugs。
我试图从 Sonar 分析中排除 **/R.class
**/R$*.class
,但没有成功。
关于如何摆脱此类消息的任何想法?
最佳答案
问题已通过 sonar.findbugs.excludesFilters
属性解决
sonarqube {
properties {
property 'sonar.findbugs.excludesFilters', 'findbugs-filter.xml'
}
}
而 findbugs-filter.xml 是
<FindBugsFilter>
<Match>
<Or>
<Class name="~.*\.R\$.*"/>
<Class name="~.*\.Manifest\$.*"/>
</Or>
</Match>
</FindBugsFilter>
关于android - 在 android 项目 : The class 'foo.bar.R$string' could not be matched to its original source file 上运行 Sonar ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45137864/
我是一名优秀的程序员,十分优秀!