How to remove Checkstyle info (wrong order for import org.apache.log4j.Logger)

Look at Preferences > Java > Code Style > Organize Imports to configure the sort order and grouping that the Source > Organize Imports command uses (Ctrl+Shift+O, on OS X Cmd+Shift+O.


You can also modify your check file to go by what eclipse does by default. You need to change the module "CustomImportOrder" and change "customImportOrderRules".

See http://checkstyle.sourceforge.net/config_imports.html#CustomImportOrder on how to customize it more.

This is what I am currently using:

<module name="CustomImportOrder">
    <property name="specialImportsRegExp" value="gov." />
    <property name="sortImportsInGroupAlphabetically" value="true" />
    <property name="customImportOrderRules"
        value="STATIC###SPECIAL_IMPORTS###STANDARD_JAVA_PACKAGE###THIRD_PARTY_PACKAGE" />
</module>

ctrl+shift+o (organize imports) will make Eclipse order your imports correctly.

There is a convention according to which imports should be ordered, and checkstyle is telling you that you have not listed your imports in that order.

You can read more about it in the ImportOrder section of the documentation:

Checks the ordering/grouping of imports. Features are:

  • groups imports: ensures that groups of imports come in a specific order (e.g., java. comes first, javax. comes second, then everything else)
  • adds a separation between groups : ensures that a blank line sit between each group
  • sorts imports inside each group: ensures that imports within each group are in lexicographic order
  • sorts according to case: ensures that the comparison between imports is case sensitive
  • groups static imports: ensures the relative order between regular imports and static imports (see import orders)