You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2015/11/03 21:21:33 UTC

svn commit: r1712393 - in /commons/sandbox/beanutils2/trunk: config/checkstyle.xml pom.xml

Author: britter
Date: Tue Nov  3 20:21:33 2015
New Revision: 1712393

URL: http://svn.apache.org/viewvc?rev=1712393&view=rev
Log:
Update maven-checkstyle-plugin to the latest version. Had to drop RedundantThrows since it has been removed from checkstyle.

Modified:
    commons/sandbox/beanutils2/trunk/config/checkstyle.xml
    commons/sandbox/beanutils2/trunk/pom.xml

Modified: commons/sandbox/beanutils2/trunk/config/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/beanutils2/trunk/config/checkstyle.xml?rev=1712393&r1=1712392&r2=1712393&view=diff
==============================================================================
--- commons/sandbox/beanutils2/trunk/config/checkstyle.xml (original)
+++ commons/sandbox/beanutils2/trunk/config/checkstyle.xml Tue Nov  3 20:21:33 2015
@@ -44,9 +44,6 @@ under the License.
         <module name="RedundantImport"/>
         <module name="UnusedImports"/>
         <module name="NeedBraces"/>
-        <module name="RedundantThrows">
-            <property name="allowUnchecked" value="true"/>
-        </module>
         <module name="JavadocMethod">
             <property name="allowUndeclaredRTE" value="true"/>
         </module>

Modified: commons/sandbox/beanutils2/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/beanutils2/trunk/pom.xml?rev=1712393&r1=1712392&r2=1712393&view=diff
==============================================================================
--- commons/sandbox/beanutils2/trunk/pom.xml (original)
+++ commons/sandbox/beanutils2/trunk/pom.xml Tue Nov  3 20:21:33 2015
@@ -188,7 +188,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-checkstyle-plugin</artifactId>
-        <version>2.7</version>
+        <version>2.17</version>
         <configuration>
           <configLocation>${basedir}/config/checkstyle.xml</configLocation>
           <headerLocation>${basedir}/config/HEADER.txt</headerLocation>