This tutorial will guide you through configuring PMD in your Maven application and install the Eclipse plugin.
First Open Eclipse MarketPlace then search for “PMD”.
Next you need to click Install and accept the license agreement reading it first. Then it will complete and need to restart Eclipse.
Once Eclipse opens again you right click the project(s) you want to activate PMD for and click “Properties”. Click “PMD” and then click “Enable PMD for this project”. You will need to create a rule set. To do that go here.
Pom.xml
Reporting
You will need both reporting plugins in your project. “maven-jxr-plugin” fixes an issue with not finding the xRef.
<reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>3.9.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.5</version> </plugin> </plugins> </reporting>
Build
You will need to configure the following to use with “mvn pmd:???” commands.
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>3.9.0</version> <configuration> <failOnViolation>true</failOnViolation> <verbose>true</verbose> <targetJdk>1.8</targetJdk> <includeTests>false</includeTests> <excludes> </excludes> <excludeRoots> <excludeRoot>target/generated-sources/stubs</excludeRoot> </excludeRoots> </configuration> <executions> <execution> <phase>test</phase> <goals> <goal>pmd</goal> <goal>cpd</goal> <goal>cpd-check</goal> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
Maven Commands
mvn pmd:check mvn pmd:pmd #cdp checks for copy paste issues mvn pmd:cdp-check mvn pmd:cdp #Generates the report site mvn site
You must be logged in to post a comment.