You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2020/10/20 12:34:30 UTC

[karaf-winegrower] branch master updated: exclude asm from xbean-finder

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

jbonofre pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/karaf-winegrower.git


The following commit(s) were added to refs/heads/master by this push:
     new fb68ee1  exclude asm from xbean-finder
     new b4a4408  Merge pull request #13 from rmannibucau/rmannibucau/exclude-asm
fb68ee1 is described below

commit fb68ee18d32cfb8420bd68505b37134ef255a8eb
Author: Romain Manni-Bucau <rm...@gmail.com>
AuthorDate: Tue Oct 20 14:32:52 2020 +0200

    exclude asm from xbean-finder
---
 winegrower-core/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/winegrower-core/pom.xml b/winegrower-core/pom.xml
index 4fa389e..48971f7 100644
--- a/winegrower-core/pom.xml
+++ b/winegrower-core/pom.xml
@@ -50,6 +50,12 @@
     <dependency>
       <groupId>org.apache.xbean</groupId>
       <artifactId>xbean-finder-shaded</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>org.ow2.asm</groupId>
+          <artifactId>*</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.slf4j</groupId>