This is an automated email from the ASF dual-hosted git repository.
tandraschko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openwebbeans.git
The following commit(s) were added to refs/heads/main by this push:
new 082d0c1ce update checkstyle
082d0c1ce is described below
commit 082d0c1cedd7a5ec19042f81a9a361b65bf934b7
Author: Thomas Andraschko <[email protected]>
AuthorDate: Mon Jan 22 09:10:24 2024 +0100
update checkstyle
---
pom.xml | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/pom.xml b/pom.xml
index dfe74341f..3b7468e48 100644
--- a/pom.xml
+++ b/pom.xml
@@ -417,7 +417,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
- <version>3.1.0</version>
+ <version>3.3.1</version>
<executions>
<execution>
<id>verify-style</id>
@@ -455,6 +455,11 @@
<property name="fileExtensions"
value="java" />
</module>
+ <module name="LineLength">
+ <property name="max" value="180" />
+ <property name="ignorePattern"
value="@version|@see" />
+ </module>
+
<!-- Checks for whitespace
-->
<!-- See
http://checkstyle.sf.net/config_whitespace.html -->
<module name="FileTabCharacter" />
@@ -516,10 +521,7 @@
<module name="UnusedImports" />
- <module name="LineLength">
- <property name="max" value="180" />
- <property name="ignorePattern"
value="@version|@see" />
- </module>
+
<module name="MethodLength">
<property name="max" value="250" />
</module>