METAMODEL-1205: Fixed issue with overlapping woodstox JAR files
diff --git a/pom.xml b/pom.xml
index 7c04733..5438094 100644
--- a/pom.xml
+++ b/pom.xml
@@ -317,6 +317,9 @@
<!-- stax-api is overlapping with xml-apis -->
<exclude>stax:stax-api:*</exclude>
<exclude>javax.xml.stream:stax-api</exclude>
+
+ <!-- codehaus woodstox is overlapping with FasterXML woodstox -->
+ <exclude>org.codehaus.woodstox:woodstox-core-asl:*</exclude>
<!-- findbugs-annotations is overlapping with net.sourceforge.findbugs:annotations -->
<exclude>com.github.stephenc.findbugs:findbugs-annotations:*</exclude>
diff --git a/sugarcrm/pom.xml b/sugarcrm/pom.xml
index 4a17f45..b35a57e 100644
--- a/sugarcrm/pom.xml
+++ b/sugarcrm/pom.xml
@@ -171,6 +171,10 @@
<groupId>javax.xml.stream</groupId>
<artifactId>stax-api</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.codehaus.woodstox</groupId>
+ <artifactId>woodstox-core-asl</artifactId>
+ </exclusion>
</exclusions>
</dependency>