Update checkstyle import rule

Update the checkstyle rule to enforce the blank line between `java`
and `javax`.

See gh-23539
This commit is contained in:
Phillip Webb 2019-09-04 10:35:20 -07:00 committed by Sam Brannen
parent d945ae9191
commit e9454b8b11
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@
<property name="processJavadoc" value="true" />
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.imports.ImportOrderCheck">
<property name="groups" value="/javax?/,/[^org\.springframework]/,org.springframework" />
<property name="groups" value="java,/^javax?\./,*,org.springframework" />
<property name="ordered" value="true" />
<property name="separated" value="true" />
<property name="option" value="bottom" />