This is an automated email from the ASF dual-hosted git repository.
ppkarwasz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-release-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new 482b60a Uniform import grouping rules
482b60a is described below
commit 482b60a11b1e762e9112d32382c314790fcca378
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Tue May 12 21:48:09 2026 +0200
Uniform import grouping rules
This change makes the import grouping rules similar to other Commons
projects:
- `java`,
- `javax`,
- everything else.
---
checkstyle.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/checkstyle.xml b/checkstyle.xml
index 8f329d3..0f5a185 100644
--- a/checkstyle.xml
+++ b/checkstyle.xml
@@ -185,7 +185,7 @@
<module name="UpperEll" />
<module name="ImportOrder">
<property name="option" value="top"/>
- <property name="groups" value="java,javax,org"/>
+ <property name="groups" value="java,javax"/>
<property name="ordered" value="true"/>
<property name="separated" value="true"/>
</module>