Bumped PMD to version 7.7.0

This commit is contained in:
Erik C. Thauvin 2024-10-25 11:54:47 -07:00
parent 4af11d862b
commit c7e5731d9e
Signed by: erik
GPG key ID: 776702A6A2DA330E
2 changed files with 3 additions and 3 deletions

View file

@ -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">

View file

@ -40,7 +40,7 @@ public class PmdOperationBuild extends Project {
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));