Skip to content

Commit

Permalink
excluding asm too
Browse files Browse the repository at this point in the history
  • Loading branch information
rmannibucau committed Jul 23, 2020
1 parent fd70273 commit 1c14bc2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ private boolean isExcluded(final String className) {
if (className.startsWith("org/apache/")) {
final String sub = className.substring("org/apache/".length());
if (sub.startsWith("openjpa/") ||
sub.startsWith("commons/")) {
sub.startsWith("commons/") ||
sub.startsWith("xbean/")) {
return true;
}
}
Expand Down

0 comments on commit 1c14bc2

Please sign in to comment.