Skip to content

Commit

Permalink
[hotfix][checkstyle] Forbidding to import org.testcontainers.shaded
Browse files Browse the repository at this point in the history
  • Loading branch information
akalash authored and pnowojski committed Dec 17, 2021
1 parent ab68e3c commit b54c413
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tools/maven/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,11 @@ This file is based on the checkstyle file of Apache Beam.
<property name="illegalPattern" value="true"/>
<property name="message" value="Use com.fasterxml.jackson instead of jettison."/>
</module>
<module name="Regexp">
<property name="format" value="org\.testcontainers\.shaded"/>
<property name="illegalPattern" value="true"/>
<property name="message" value="Use utilities from appropriate library instead of org.testcontainers."/>
</module>

<!-- Enforce Java-style array declarations -->
<module name="ArrayTypeStyle"/>
Expand Down

0 comments on commit b54c413

Please sign in to comment.