Gradle - PMD/FindBugs 的默认配置
Gradle - Default configuration for PMD/FindBugs
我在 Eclipse 和 Gradle 中配置了 PMD 和 FindBugs。 Gradle 报告由 Jenkins 使用,其中列出了一组违规行为,这似乎与 Eclipse 报告的不同。
我想将我的 Eclipse FindBugs 和 PMD 设置设置为与相应 Gradle 插件的默认设置相同。
为 Gradle 插件配置的默认 PMD 规则集和 FindBugs 工作是什么?
请参阅 findBugs
gradle 插件 here and PMD
plugin here 的文档。
对于findbugs
,它使用effort = 'default'
。请参阅 findBugs 的 documentation 以了解其含义。
对于PMD
,貌似用的是"basic"
。您可以查看 PMD
docs 以了解其中包含的内容。
我在 Eclipse 和 Gradle 中配置了 PMD 和 FindBugs。 Gradle 报告由 Jenkins 使用,其中列出了一组违规行为,这似乎与 Eclipse 报告的不同。
我想将我的 Eclipse FindBugs 和 PMD 设置设置为与相应 Gradle 插件的默认设置相同。
为 Gradle 插件配置的默认 PMD 规则集和 FindBugs 工作是什么?
请参阅 findBugs
gradle 插件 here and PMD
plugin here 的文档。
对于findbugs
,它使用effort = 'default'
。请参阅 findBugs 的 documentation 以了解其含义。
对于PMD
,貌似用的是"basic"
。您可以查看 PMD
docs 以了解其中包含的内容。