Skip to content

Commit

Permalink
Upgraded PMD to 7.0.0 and pmd-pligin to 3.22
Browse files Browse the repository at this point in the history
  • Loading branch information
elecharny committed May 27, 2024
1 parent 495a282 commit 0daeb7b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 6 deletions.
9 changes: 7 additions & 2 deletions mina-legal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,13 @@
</dependency>

<dependency>
<groupId>pmd</groupId>
<artifactId>pmd</artifactId>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
</dependency>

<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
</dependency>
</dependencies>
</project>
Expand Down
19 changes: 15 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
<version.model.plugin>3.9.4</version.model.plugin>
<version.plexus.utils>4.0.0</version.plexus.utils>
<version.plugin.plugin>3.9.0</version.plugin.plugin>
<version.pmd.plugin>3.21.0</version.pmd.plugin>
<version.pmd.plugin>3.22.0</version.pmd.plugin>
<version.project.plugin>3.0-alpha-2</version.project.plugin>
<version.project.info.report.plugin>3.4.5</version.project.info.report.plugin>
<version.rat.maven.plugin>1.0-alpha-3</version.rat.maven.plugin>
Expand All @@ -145,7 +145,7 @@
<version.jzlib>1.1.3</version.jzlib>
<version.log4j>1.2.17</version.log4j>
<version.ognl>3.3.4</version.ognl>
<version.pmd>4.3</version.pmd>
<version.pmd>7.0.0</version.pmd>
<version.rmock>2.0.2</version.rmock>
<version.slf4j.api>1.7.36</version.slf4j.api>
<version.slf4j.reload4j>1.7.36</version.slf4j.reload4j>
Expand Down Expand Up @@ -294,8 +294,14 @@
</dependency>

<dependency>
<groupId>pmd</groupId>
<artifactId>pmd</artifactId>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>${version.pmd}</version>
</dependency>

<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>${version.pmd}</version>
</dependency>

Expand Down Expand Up @@ -879,6 +885,11 @@

<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down

0 comments on commit 0daeb7b

Please sign in to comment.