From commits-return-55249-archive-asf-public=cust-asf.ponee.io@cxf.apache.org Tue Nov 3 16:48:41 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mxout1-he-de.apache.org (mxout1-he-de.apache.org [95.216.194.37]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id A91E7180674 for ; Tue, 3 Nov 2020 17:48:40 +0100 (CET) Received: from mail.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mxout1-he-de.apache.org (ASF Mail Server at mxout1-he-de.apache.org) with SMTP id 4F38364C5F for ; Tue, 3 Nov 2020 16:48:39 +0000 (UTC) Received: (qmail 46887 invoked by uid 500); 3 Nov 2020 16:48:37 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 46637 invoked by uid 99); 3 Nov 2020 16:48:36 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Nov 2020 16:48:36 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 9EF5F82100; Tue, 3 Nov 2020 16:48:36 +0000 (UTC) Date: Tue, 03 Nov 2020 16:48:44 +0000 To: "commits@cxf.apache.org" Subject: [cxf] 08/16: Add xbean asm9 support MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: dkulp@apache.org In-Reply-To: <160442211610.23336.14200958187205809363@gitbox.apache.org> References: <160442211610.23336.14200958187205809363@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: cxf X-Git-Refname: refs/heads/3.3.x-fixes X-Git-Reftype: branch X-Git-Rev: 9b5e69ae01625b7b0c91f7cecd8286364562d202 X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20201103164836.9EF5F82100@gitbox.apache.org> 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 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");