This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch POOL_2_X in repository https://gitbox.apache.org/repos/asf/commons-pool.git
The following commit(s) were added to refs/heads/POOL_2_X by this push: new a5a57753 Use Checkstyle to validate import order a5a57753 is described below commit a5a577533b86be653347e67caee1f7c7d870f178 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Oct 9 10:37:27 2023 -0400 Use Checkstyle to validate import order --- src/conf/checkstyle.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/conf/checkstyle.xml b/src/conf/checkstyle.xml index d7085b1e..a0033239 100644 --- a/src/conf/checkstyle.xml +++ b/src/conf/checkstyle.xml @@ -65,6 +65,12 @@ <module name="IllegalInstantiation"> <property name="classes" value="java.lang.Boolean, java.lang.String"/> </module> + <module name="ImportOrder"> + <property name="option" value="top"/> + <property name="groups" value="java,javax,org"/> + <property name="ordered" value="true"/> + <property name="separated" value="true"/> + </module> </module>