Skip to content
Snippets Groups Projects
Commit d47d4d81 authored by Kevin Risden's avatar Kevin Risden
Browse files

[jdbc] Fix JDBC checkstyle errors.

RedundantThrows is unreliable and latest checkstyle removes it.
https://github.com/checkstyle/checkstyle/issues/5#issuecomment-52593242
parent c9d70ba0
No related branches found
No related tags found
No related merge requests found
......@@ -161,7 +161,6 @@ LICENSE file.
<module name="IllegalInstantiation"/>
<module name="InnerAssignment"/>
<module name="MissingSwitchDefault"/>
<module name="RedundantThrows"/>
<module name="SimplifyBooleanExpression"/>
<module name="SimplifyBooleanReturn"/>
......
......@@ -38,9 +38,9 @@ LICENSE file.
<dependencyManagement>
<dependencies>
<dependency>
<groupId>checkstyle</groupId>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>5.0</version>
<version>7.7.1</version>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
......@@ -145,7 +145,7 @@ LICENSE file.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.15</version>
<version>2.16</version>
</plugin>
</plugins>
</pluginManagement>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment