This is an automated email from the ASF dual-hosted git repository.
dkulp 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 511907e Add xbean asm9 support
511907e is described below
commit 511907ef4f6d8ac4c4acb9b988c6389e0880dd7e
Author: Romain Manni-Bucau <[email protected]>
AuthorDate: Wed Sep 30 15:52:18 2020 +0200
Add xbean asm9 support
---
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");