I tried to build Apache Tika 0.6 yesterday and I couldn’t build it because the tests failed. The failing tests were
testExcelParserFormatting(org.apache.tika.parser.microsoft.ExcelParserTest) testExcelFormats(org.apache.tika.parser.microsoft.ooxml.OOXMLParserTest)
and the failure had to to with the fact that the locale was “es_ES” and the numbering format differs (“1.599,99” and not “1,599.99”)
1 2 3 4 5 6 | |
I changed the locale temporarily to be able to build
export LC_ALL=en_US.UTF-8
so those test no longer failed. But then I run into OutOfMemoryError while running some of the tests so I set MAVEN_OPTS:
export MAVEN_OPTS="-Xmx2048m"
And then mvn install suceeded !. I got the jars
find . -name "*jar" ./tika-app/target/tika-app-0.6.jar ./tika-bundle/target/tika-bundle-0.6.jar ./tika-core/target/tika-core-0.6.jar ./tika-parsers/target/tika-parsers-0.6.jar