Skip to content

Commit

Permalink
Bumped PMD to version 7.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Oct 25, 2024
1 parent 4af11d8 commit c7e5731
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions config/pmd.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<!-- BEST PRACTICES -->
<rule ref="category/java/bestpractices.xml">
<exclude name="AvoidPrintStackTrace"/>
<exclude name="JUnit4TestShouldUseTestAnnotation"/>
<exclude name="JUnitTestContainsTooManyAsserts"/>
<exclude name="GuardLogStatement"/>
<exclude name="UnitTestContainsTooManyAsserts"/>
<exclude name="UnitTestShouldUseTestAnnotation"/>
</rule>

<rule ref="category/java/bestpractices.xml/MissingOverride">
Expand Down
2 changes: 1 addition & 1 deletion src/bld/java/rife/bld/extension/PmdOperationBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public PmdOperationBuild() {

repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, RIFE2_RELEASES, RIFE2_SNAPSHOTS);

var pmd = version(7, 6, 0);
var pmd = version(7, 7, 0);
scope(compile)
.include(dependency("com.uwyn.rife2", "bld", version(2, 1, 0)))
.include(dependency("net.sourceforge.pmd", "pmd-java", pmd));
Expand Down

0 comments on commit c7e5731

Please sign in to comment.