Forum Discussion
SmartBear_Suppo
Alumni
12 years agoHi,
Please add an exclusion of the xmlbeans library that is used with the poi-ooxml library by modifying the poi-ooxml dependency as shown below.
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.10-FINAL</version>
<exclusions>
<exclusion>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
</exclusion>
</exclusions>
</dependency>
Also, please confirm the version of the plugin you are using.
Thanks,
Giscard
SmartBear Support
Please add an exclusion of the xmlbeans library that is used with the poi-ooxml library by modifying the poi-ooxml dependency as shown below.
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.10-FINAL</version>
<exclusions>
<exclusion>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
</exclusion>
</exclusions>
</dependency>
Also, please confirm the version of the plugin you are using.
Thanks,
Giscard
SmartBear Support