PMD scans source code and looks for potential problems like possible bugs, dead code, suboptimal code, overcomplicated expressions, and duplicate code.
I have the following structure public class parent { int value ; } public class child extends parent { int childValue; public child(){} public …
java pmdPMD and SonarQube a nice tools but I have problems trying to suppress PMD warnings. We use Lombok a lot …
pmd sonarqubeIs there a good resource which describes the "why" behind PMD rule sets? PMD's site has the "what" - what …
pmd java code-analysisWhen defining a PMD ruleset is it possible to exclude a source file from a specific rule? I want to …
java pmdWe are using the source code analyzer PMD in our Java project. I am trying to resolve the reported issues …
java pmd1. Regarding PMD: 1.1 How do I set the PMD checks, to ignore some of them, like "Variable name is too short, …
java eclipse eclipse-plugin findbugs pmdI have installed PMD in Eclipse Kepler using Eclipse market place. But I am unable to access it after the …
eclipse pmd eclipse-keplerThis part of code is rejected by pmd in sonar: public String getFoo() { String foo = System.getProperty("foo"); if (foo == …
java sonarqube pmdI want to know if there is a way to run all PMD rulesets from command line. I've used PMD …
pmd command-line-interface