如何让 PMD 也检查我的测试代码?
How do I make PMD also check my test code?
我有一个运行 PMD 来检查生产代码的 Maven Java 项目。如何让PMD也检查测试码?
我阅读了几个文档和指南,但找不到任何内容。
自己找到了答案。 <includeTests>true</includeTests>
在 PMD Maven 插件的 <configuration>
部分中,如中所述
https://maven.apache.org/plugins/maven-pmd-plugin/pmd-mojo.html#includeTests.
我有一个运行 PMD 来检查生产代码的 Maven Java 项目。如何让PMD也检查测试码?
我阅读了几个文档和指南,但找不到任何内容。
自己找到了答案。 <includeTests>true</includeTests>
在 PMD Maven 插件的 <configuration>
部分中,如中所述
https://maven.apache.org/plugins/maven-pmd-plugin/pmd-mojo.html#includeTests.