Skip to content

Commit

Permalink
pmd fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Apr 26, 2024
1 parent fb4c098 commit a64d5a8
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<!-- As a property, as it is included in Checkstyle build -->
<checkstyle.version>9.3</checkstyle.version>
<spotbugs.version>4.8.4</spotbugs.version>
<pmd.version>6.50.0</pmd.version>
<pmd.version>6.55.0</pmd.version>
<junit.version>4.13.2</junit.version>
<archunit.version>1.3.0</archunit.version>
<dependencycheck.version>9.1.0</dependencycheck.version>
Expand Down Expand Up @@ -94,6 +94,28 @@
<excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.21.2</version>
<dependencies>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>${pmd.version}</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>${pmd.version}</version>
</dependency>
</dependencies>
<configuration>
<rulesets>
<ruleset>${basedir}/pmd-ruleset.xml</ruleset>
</rulesets>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down

0 comments on commit a64d5a8

Please sign in to comment.