-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpmd
More file actions
28 lines (26 loc) · 898 Bytes
/
pmd
File metadata and controls
28 lines (26 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<build>
<plugins>
<!-- ... other plugins ... -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.15.0</version> <!-- Use the latest version available -->
<executions>
<execution>
<id>pmd-check</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<rulesets>
<!-- You can customize the ruleset or use the default -->
<ruleset>rulesets/java/quickstart.xml</ruleset>
</rulesets>
</configuration>
</plugin>
<!-- ... other plugins ... -->
</plugins>
</build>