|
||||||||
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
- [jbehave-dev] [jira] (JBEHAVE-840) Unable to read excel... Ajay Singh (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-840) Unable to read ... Brian Repko (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-840) Unable to read ... Ajay Singh (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-840) Unable to read ... Ajay Singh (JIRA)
Hi,
Resolved the issue.
Root cause: xls file was getting corrupted when copied to target/classes folder during build using maven [mvn clean install]
Resolution : Added the following plug in pom.xml
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<configuration>
<encoding>UTF-8</encoding>
<nonFilteredFileExtensions>
<nonFilteredFileExtension>xls</nonFilteredFileExtension>
</nonFilteredFileExtensions>
</configuration>
</plugin>