Merge pull request #13 from rmannibucau/rmannibucau/exclude-asm

exclude asm from xbean-finder
diff --git a/winegrower-core/pom.xml b/winegrower-core/pom.xml
index 4ca60c1..d8fef0f 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>