Skip to content

Commit

Permalink
Bump the version of findbugs and checkstyle
Browse files Browse the repository at this point in the history
This will make sure that those pass in java7/java8 environment
  • Loading branch information
nikolavp committed Aug 9, 2016
1 parent 6c649d7 commit 5c44883
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 0 additions & 2 deletions checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@
<!-- Checks for common coding problems -->
<!-- See http://checkstyle.sf.net/config_coding.html -->
<!-- <module name="AvoidInlineConditionals"/> -->
<module name="DoubleCheckedLocking"/> <!-- MY FAVOURITE -->
<module name="EmptyStatement"/>
<module name="EqualsHashCode"/>
<module name="HiddenField">
Expand All @@ -171,7 +170,6 @@
<module name="InnerAssignment"/>
<module name="MagicNumber"/>
<module name="MissingSwitchDefault"/>
<module name="RedundantThrows"/>
<module name="SimplifyBooleanExpression"/>
<module name="SimplifyBooleanReturn"/>

Expand Down
11 changes: 9 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,17 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.8</version>
<version>2.17</version>
<configuration>
<configLocation>checkstyle.xml</configLocation>
</configuration>
<!--<dependencies>-->
<!--<dependency>-->
<!--<groupId>com.puppycrawl.tools</groupId>-->
<!--<artifactId>checkstyle</artifactId>-->
<!--<version>5.9</version>-->
<!--</dependency>-->
<!--</dependencies>-->
<executions>
<execution>
<id>checkstyle-verify</id>
Expand Down Expand Up @@ -101,7 +108,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.5.2</version>
<version>3.0.4</version>
<configuration>
<effort>Max</effort>
<threshold>Default</threshold>
Expand Down

0 comments on commit 5c44883

Please sign in to comment.