You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2020/11/03 16:48:44 UTC

[cxf] 08/16: Add xbean asm9 support

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

dkulp pushed a commit to branch 3.3.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git

commit 9b5e69ae01625b7b0c91f7cecd8286364562d202
Author: Romain Manni-Bucau <rm...@gmail.com>
AuthorDate: Wed Sep 30 15:52:18 2020 +0200

    Add xbean asm9 support
    
    (cherry picked from commit 511907ef4f6d8ac4c4acb9b988c6389e0880dd7e)
---
 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 fcb3a98..b08974b 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.asm9.ClassWriter");
             tryClass("org.apache.xbean.asm8.ClassWriter");
             tryClass("org.apache.xbean.asm7.ClassWriter");
             tryClass("org.apache.xbean.asm5.ClassWriter");