2
votes

I have PMD and FindBugs configured in eclipse as well as Gradle. The Gradle reports are consumed by Jenkins, which lists a set of violations, which seem to be different than those reported by Eclipse.

I would like to set my Eclipse FindBugs and PMD settings to be the same as the defaults for the corresponding Gradle Plugins.

What are the default PMD RuleSets and FindBugs effort configured for the Gradle Plugins ?

1

1 Answers

2
votes

See the documentation for the findBugs gradle plugin here and PMD plugin here.

For findbugs, it uses effort = 'default'. See the documentation for findBugs to see what that entails.

For PMD, it looks like it uses "basic". You can check out the PMD docs to see what that entails.