This is an automated email from the ASF dual-hosted git repository. coheigea pushed a commit to branch 3.3.x-fixes in repository https://gitbox.apache.org/repos/asf/cxf.git
commit 2e31d92338e7bc0deda8fd4e5badd425ed2917e7 Author: Romain Manni-Bucau <[email protected]> AuthorDate: Fri May 1 09:02:13 2020 +0200 support xbean-asm8 shade (cherry picked from commit ffb3dd02e3f97f379b3f78a543dd915548e71789) --- core/src/main/java/org/apache/cxf/common/util/ASMHelper.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/java/org/apache/cxf/common/util/ASMHelper.java b/core/src/main/java/org/apache/cxf/common/util/ASMHelper.java index c3afe46..fcb3a98 100644 --- a/core/src/main/java/org/apache/cxf/common/util/ASMHelper.java +++ b/core/src/main/java/org/apache/cxf/common/util/ASMHelper.java @@ -93,6 +93,7 @@ public class ASMHelper { if (cwClass == null) { //try the "real" asm first, then the others tryClass("org.objectweb.asm.ClassWriter"); + tryClass("org.apache.xbean.asm8.ClassWriter"); tryClass("org.apache.xbean.asm7.ClassWriter"); tryClass("org.apache.xbean.asm5.ClassWriter"); tryClass("org.apache.xbean.asm6.ClassWriter");
