Skip to content

Commit

Permalink
Issue checkstyle#41: upgraded pmd version
Browse files Browse the repository at this point in the history
  • Loading branch information
rnveach committed Aug 10, 2017
1 parent 195a3b0 commit c617b4d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions config/pmd.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@
<exclude name="FieldDeclarationsShouldBeAtStartOfClass"/>
<!-- too much alarms of Checks, we will never move logic out of Check, each Check is independent logic container -->
<exclude name="GodClass"/>
<!--we do not care about this minor overhead, we are not Android application and we do not want to change
visibility of methods. Package-private visibility should be avoid almost always.-->
<exclude name="AccessorMethodGeneration"/>
</rule>

<rule ref="rulesets/java/design.xml/ConfusingTernary" />
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<maven.plugin.checkstyle.version>2.17</maven.plugin.checkstyle.version>
<maven.pmd.plugin.version>3.7</maven.pmd.plugin.version>
<maven.findbugs.plugin.version>3.0.4</maven.findbugs.plugin.version>
<maven.pmd.plugin.version>3.7</maven.pmd.plugin.version>
<maven.pmd.plugin.version>3.8</maven.pmd.plugin.version>
<maven.sevntu.checkstyle.plugin.version>1.24.2</maven.sevntu.checkstyle.plugin.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
Expand Down

0 comments on commit c617b4d

Please sign in to comment.