Merge pull request #31 from ebarboni/asm

change ow2.asm dependency seems to fix #10
diff --git a/pom.xml b/pom.xml
index 5267b36..750c54f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -87,7 +87,7 @@
    <!-- TODO need to override parent version value... I suppose this will eventually end up in mojo parent pom, check regularly -->
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-plugin-plugin</artifactId>
-                <version>3.4</version>
+                <version>3.5</version>
                 <configuration>
                     <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
                  </configuration>
@@ -150,6 +150,7 @@
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>animal-sniffer-maven-plugin</artifactId>
+                <version>1.16</version>
                 <executions>
                     <execution>
                         <phase>package</phase>
@@ -468,6 +469,18 @@
             <groupId>org.apache.maven.shared</groupId>
             <artifactId>maven-dependency-analyzer</artifactId>
             <version>1.6</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.ow2.asm</groupId>
+                    <artifactId>asm</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <!-- maven dependecy analyser version 1.8 will have the correct dependency -->
+        <dependency>
+            <groupId>org.ow2.asm</groupId>
+            <artifactId>asm</artifactId>
+            <version>6.0</version>
         </dependency>
         <dependency>
             <groupId>org.apache.maven</groupId>