Skip to content

Commit

Permalink
Bump checkstyle from 8.23 to 8.24
Browse files Browse the repository at this point in the history
  • Loading branch information
pzygielo committed Apr 16, 2024
1 parent c1a59ce commit 45785ab
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
9 changes: 9 additions & 0 deletions checkstyle-suppressions.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0"?>
<!--
Copyright (c) 2024 Contributors to the Eclipse Foundation. All rights reserved.
Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
Expand Down Expand Up @@ -36,4 +37,12 @@
<suppress checks="FileLength" files="woodstock-webui-jsf/src/main/java/com/sun/webui/jsf/component/TableRowGroup.java"/>
<suppress checks="FileLength" files="woodstock-webui-jsf/src/main/java/com/sun/webui/jsf/component/Wizard.java"/>
<suppress checks="FileLength" files="woodstock-webui-jsf/src/main/java/com/sun/webui/jsf/renderkit/html/WizardRenderer.java"/>

<suppress checks="LineLength" files="woodstock-dt/src/main/resources/jakarta/faces/component/bundle.properties"/>
<suppress checks="LineLength" files="woodstock-webui-jsf/src/main/java/com/sun/webui/jsf/renderkit/html/PageRenderer.java"/>
<suppress checks="LineLength" files="woodstock-webui-jsf/src/main/java/com/sun/webui/jsf/component/EditableList.java"/>
<suppress checks="LineLength" files="woodstock-webui-jsf/src/main/resources/com/sun/webui/jsf/resources/LogMessages.properties"/>
<suppress checks="LineLength" files="woodstock-webui-jsf/src/main/resources/com/sun/webui/jsf/component/Bundle.properties"/>
<suppress checks="LineLength" files="woodstock-webui-jsf-suntheme/src/main/resources/messages/messages.properties"/>
<suppress checks="LineLength" files="woodstock-example/src/main/resources/com/sun/webui/jsf/example/resources/Resources.properties"/>
</suppressions>
9 changes: 5 additions & 4 deletions checkstyle.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<!--
Copyright (c) 2022 Contributors to the Eclipse Foundation. All rights reserved.
Copyright (c) 2022, 2024 Contributors to the Eclipse Foundation. All rights reserved.
Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
Expand Down Expand Up @@ -40,6 +40,10 @@

<module name="SuppressWarningsFilter" />

<module name="LineLength">
<property name="max" value="120"/>
</module>

<module name="TreeWalker">

<module name="SuppressionCommentFilter"/>
Expand Down Expand Up @@ -67,9 +71,6 @@
<property name="processJavadoc" value="false"/>
</module>

<module name="LineLength">
<property name="max" value="120"/>
</module>
<module name="MethodLength"/>
<module name="ParameterNumber"/>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>8.23</version>
<version>8.24</version>
</dependency>
</dependencies>
</plugin>
Expand Down

0 comments on commit 45785ab

Please sign in to comment.