Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ subprojects {
dependency("commons-beanutils:commons-beanutils:1.11.0")
dependency("commons-io:commons-io:2.21.0")
dependency("javax.xml.bind:jaxb-api:2.3.1")
dependency("net.sourceforge.pmd:pmd-java:7.17.0")
dependency("net.sourceforge.pmd:pmd-java:7.19.0")
dependency("org.allurefw:allure1-model:1.0")
dependency("org.apache.commons:commons-collections4:4.5.0")
dependency("org.apache.commons:commons-lang3:3.20.0")
Expand Down
2 changes: 2 additions & 0 deletions gradle/quality-configs/pmd/pmd.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<exclude name="GuardLogStatement"/>
<!-- Doesn't work with Java 8 switch clause -->
<exclude name="ExhaustiveSwitchHasDefault"/>
<exclude name="EnumComparison"/>
</rule>


Expand Down Expand Up @@ -96,6 +97,7 @@
<!-- Error prone (https://pmd.github.io/pmd-6.0.1/pmd_rules_java_errorprone.html) -->
<rule ref="category/java/errorprone.xml">
<exclude name="AvoidCatchingThrowable"/>
<exclude name="AvoidCatchingGenericException"/>
<exclude name="AvoidDuplicateLiterals"/> <!-- duplicate of checkstyle check MultipleStringLiterals -->
<exclude name="AvoidFieldNameMatchingMethodName"/>
<exclude name="AssignmentInOperand"/> <!-- duplicate of checkstyle check AssignmentInOperand -->
Expand Down
Loading