Skip to content

Commit

Permalink
HBASE-20441 Use checkstyle to ban imports from commons-lang 2
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Busbey <busbey@apache.org>
  • Loading branch information
meszibalu authored and busbey committed Apr 20, 2018
1 parent 90fe98a commit afb6d3e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion hbase-checkstyle/src/main/resources/hbase/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,15 @@
<property name="processJavadoc" value="true"/>
</module>
<module name="IllegalImport">
<property name="illegalPkgs" value="com.google.common, io.netty, org.apache.curator.shaded, org.apache.htrace.shaded, org.apache.commons.cli, org.apache.commons.collections, org.apache.commons.collections4"/>
<property name="illegalPkgs" value="
com.google.common,
io.netty,
org.apache.commons.cli,
org.apache.commons.collections,
org.apache.commons.collections4,
org.apache.commons.lang,
org.apache.curator.shaded,
org.apache.htrace.shaded"/>
</module>
<!-- Javadoc Checks
http://checkstyle.sourceforge.net/config_javadoc.html -->
Expand Down

0 comments on commit afb6d3e

Please sign in to comment.