This is an automated email from the ASF dual-hosted git repository.

deki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/master by this push:
     new ffb3dd0  support xbean-asm8 shade
     new dbf838d  Merge pull request #668 from rmannibucau/patch-2
ffb3dd0 is described below

commit ffb3dd02e3f97f379b3f78a543dd915548e71789
Author: Romain Manni-Bucau <rmannibu...@gmail.com>
AuthorDate: Fri May 1 09:02:13 2020 +0200

    support xbean-asm8 shade
---
 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");

Reply via email to