<RestrictImports>
<reason>Don't use wildcard imports</reason>
<bannedImport>**.'*'</bannedImport>
</RestrictImports>
Note: '*'
is a special literal which is treated specially. It is only allowed as the last part of a package
pattern.
<RestrictImports>
<reason>Don't use static imports</reason>
<bannedImport>static **</bannedImport>
</RestrictImports>
<RestrictImports>
<reason>Use slf4j Logger</reason>
<bannedImport>**.Logger</bannedImport>
<allowedImport>org.slf4j.Logger</allowedImport>
</RestrictImports>