You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by ki...@apache.org on 2022/02/16 02:01:29 UTC

[incubator-seatunnel] branch dev updated: Fix Import order of java in checkstyle (#1250)

This is an automated email from the ASF dual-hosted git repository.

kirs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new 750f6c7  Fix Import order of java in checkstyle (#1250)
750f6c7 is described below

commit 750f6c7561206a7ac44fec97332768df64aeb6e6
Author: Wenjun Ruan <we...@apache.org>
AuthorDate: Wed Feb 16 10:01:26 2022 +0800

    Fix Import order of java in checkstyle (#1250)
---
 tools/checkstyle/checkStyle.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/checkstyle/checkStyle.xml b/tools/checkstyle/checkStyle.xml
index f3dc794..f68f96d 100755
--- a/tools/checkstyle/checkStyle.xml
+++ b/tools/checkstyle/checkStyle.xml
@@ -83,8 +83,8 @@
     <module name="TreeWalker">
         <module name="ImportOrder">
             <property name="severity" value="error"/>
-            <property name="staticGroups" value="org.apache.seatunnel,org.apache.seatunnel.shade,*,javax,/^java\./,scala"/>
-            <property name="groups" value="org.apache.seatunnel,org.apache.seatunnel.shade,*,javax,/^java\./,scala"/>
+            <property name="staticGroups" value="org.apache.seatunnel,org.apache.seatunnel.shade,*,javax,java,scala"/>
+            <property name="groups" value="org.apache.seatunnel,org.apache.seatunnel.shade,*,javax,java,scala"/>
             <property name="separated" value="true"/>
             <property name="sortStaticImportsAlphabetically" value="true"/>
             <property name="option" value="top"/>