TOBAGO-1698: Update some build libs
* checkstyle
diff --git a/other/checkstyle-rules/src/main/resources/tobago/checkstyle-strict.xml b/other/checkstyle-rules/src/main/resources/tobago/checkstyle-strict.xml
index e60fd5a..6f8ec16 100644
--- a/other/checkstyle-rules/src/main/resources/tobago/checkstyle-strict.xml
+++ b/other/checkstyle-rules/src/main/resources/tobago/checkstyle-strict.xml
@@ -66,6 +66,7 @@
     <!-- See http://checkstyle.sf.net/config_header.html -->
     <module name="Header">
         <property name="headerFile" value="${checkstyle.header.file}"/>
+        <property name="fileExtensions" value="*.java"/>
     </module>
 
     <module name="FileTabCharacter">
@@ -125,7 +126,6 @@
         <module name="UnusedImports"/>
         <!--module name="AvoidStaticImport"/-->
 
-
         <!-- Checks for Size Violations.                    -->
         <!-- See http://checkstyle.sf.net/config_sizes.html -->
         <module name="LineLength">
diff --git a/other/checkstyle-rules/src/main/resources/tobago/checkstyle.xml b/other/checkstyle-rules/src/main/resources/tobago/checkstyle.xml
index 586b2de..80589ed 100644
--- a/other/checkstyle-rules/src/main/resources/tobago/checkstyle.xml
+++ b/other/checkstyle-rules/src/main/resources/tobago/checkstyle.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0"?>
-<!-- 
+<!--
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
@@ -129,11 +129,13 @@
         <!-- Checks for Size Violations.                    -->
         <!-- See http://checkstyle.sf.net/config_sizes.html -->
         <module name="LineLength">
-          <property name="max" value="120"/>
+            <property name="max" value="120"/>
         </module>
-        <!--<module name="MethodLength"/>-->
+        <module name="MethodLength">
+            <property name="max" value="250"/>
+        </module>
         <module name="ParameterNumber">
-          <property name="max" value="15"/>
+            <property name="max" value="10"/>
         </module>
 
         <!-- Checks for whitespace                               -->